fpc/tests/tbs/tb0666a.pp
marco fdb477df1e # revisions: 43566,43567,43568,43586,43629,43823
git-svn-id: branches/fixes_3_2@43941 -
2020-01-14 10:41:39 +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.