mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:38:31 +02:00
29 lines
342 B
ObjectPascal
29 lines
342 B
ObjectPascal
unit ugeneric108b;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch advancedrecords}
|
|
|
|
interface
|
|
|
|
type
|
|
generic TTest<T> = record
|
|
f: T;
|
|
function Test: LongInt;
|
|
class function Test2: LongInt; static;
|
|
end;
|
|
|
|
implementation
|
|
|
|
function TTest.Test: LongInt;
|
|
begin
|
|
Result := 2;
|
|
end;
|
|
|
|
class function TTest.Test2: LongInt;
|
|
begin
|
|
Result := 2;
|
|
end;
|
|
|
|
end.
|
|
|