fpc/tests/tbs/tb0666a.pp
2019-12-30 21:35:26 +00:00

23 lines
198 B
ObjectPascal

{ %NORUN }
program tb0666a;
{$mode delphi}
function Test<T>: T;
procedure Foo;
begin
Test<T>;
Test<LongInt>;
Test<String>;
end;
begin
Foo;
end;
begin
Test<LongInt>;
end.