mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 00:48:37 +02:00
20 lines
144 B
ObjectPascal
20 lines
144 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tgenfunc22;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
procedure Test<T: class>;
|
|
|
|
implementation
|
|
|
|
procedure Test<T: class>;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|