fpc/tests/webtbs/tw18123.pp
2010-12-02 03:53:02 +00:00

23 lines
297 B
ObjectPascal

{ %norun% }
program tw18123;
{$mode objfpc}{$H+}
type
TFoo2 = object
type
TFoo3 = object
end;
TFoo4 = object
function GetFoo3: TFoo3;
end;
end;
function TFoo2.TFoo4.GetFoo3: TFoo2.TFoo3; // was error: Syntax error, ";" expected but "." found
begin
end;
begin
end.