mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
23 lines
224 B
ObjectPascal
23 lines
224 B
ObjectPascal
unit ugeneric59b;
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
interface
|
|
|
|
type
|
|
TTest<T> = class
|
|
class function Test: Integer;
|
|
end;
|
|
|
|
implementation
|
|
|
|
class function TTest<T>.Test: Integer;
|
|
begin
|
|
Result := 2;
|
|
end;
|
|
|
|
end.
|
|
|