fpc/tests/tbs/tb0584.pp
svenbarth 72a01f17f5 * m68k/n68kmat.pas, tm68knotnode.pass_generate_code:
It is a bad idea (TM) to do a second_pass twice on the same node
* added test

git-svn-id: trunk@22785 -
2012-10-20 18:23:35 +00:00

41 lines
448 B
ObjectPascal

{ %NORUN }
program tb0584;
{$mode objfpc}
type
TSomeObj = class
function Test(s: String): TObject;
end;
TSomeOtherObj = class
public
function GetFoo: String;
end;
function TSomeObj.Test(s: String): TObject;
begin
end;
function TSomeOtherObj.GetFoo: String;
begin
end;
var
SomeObj: TSomeObj;
procedure Test;
var
b: Boolean;
obj: TSomeOtherObj;
begin
b := not Assigned(SomeObj.Test(obj.GetFoo));
end;
begin
end.