mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 07:39:13 +02:00
18 lines
201 B
ObjectPascal
18 lines
201 B
ObjectPascal
{ %RECOMPILE }
|
|
{ %NORUN }
|
|
|
|
program tanonfunc55;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$modeswitch advancedrecords}
|
|
|
|
uses
|
|
uanonfunc55;
|
|
|
|
var
|
|
f: specialize TFunc<LongInt>;
|
|
begin
|
|
f := specialize Foo<LongInt>;
|
|
end.
|
|
|