{ %fail }{$MODE DELPHI}
type
texec1 =class
protected
procedure execute;
public
constructor create;end;
procedure t(p: pointer);beginend;
constructor texec1.Create;begin{ THis is not allowed }t(@execute);end;
procedure texec1.execute;beginend;beginend.