fpc/tests/webtbs/tw24844.pp
Jonas Maebe 9450407ed5 * when taking the address of a method1 that is specified by subscripting
the result of a objtype.method2 call, ensure that we call method2 with
    objtype as methdpointer rather than the self node of the current routine
    (mantis #24844)

git-svn-id: trunk@27977 -
2014-06-15 17:26:12 +00:00

50 lines
843 B
ObjectPascal

program method_init;
{$mode objfpc}
{.$mode delphi}
Type
{ TObj }
TObj = Class
procedure Test;
end;
{ TObj }
procedure TObj.Test;
Var
proc : procedure of object;
begin
proc := {$IFNDEF FPC_DELPHI}@{$ENDIF}TObject.Create.Free;
WriteLn('Expected TObject actual: ', TObject(TMethod(Proc).Data).ClassName);
if TObject(TMethod(Proc).Data).ClassName<>'TObject' then
halt(1);
end;
procedure UncompilableProc;
Var
proc : procedure of object;
begin
proc := {$IFNDEF FPC_DELPHI}@{$ENDIF}TObject.Create.Free; // uncompilable in FPC mode
WriteLn('Expected TObject actual: ', TObject(TMethod(Proc).Data).ClassName);
if TObject(TMethod(Proc).Data).ClassName<>'TObject' then
halt(2);
end;
begin
WriteLn('Mode: ', {$IFDEF FPC_DELPHI}'delphi'{$ELSE}'objfpc'{$ENDIF});
TObj.Create.Test;
UncompilableProc;
end.