mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:08:02 +02:00
13 lines
214 B
Plaintext
13 lines
214 B
Plaintext
{$MODE OBJFPC} { -*- text -*- }
|
|
program Test;
|
|
|
|
type
|
|
generic Test1<T> = class end;
|
|
generic Test2<T> = class
|
|
type
|
|
Test3 = specialize Test1<T>;
|
|
end;
|
|
Test4 = specialize Test2<Integer>;
|
|
|
|
begin
|
|
end. |