fpc/tests/webtbs/tw18123.pp
2025-01-26 10:53:22 +01:00

23 lines
296 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.