mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
20 lines
234 B
ObjectPascal
20 lines
234 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw37187;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TTest<T: class> = class
|
|
arr: array[0..SizeOf(T)] of Byte;
|
|
end;
|
|
|
|
generic TTest2<T: class> = class
|
|
public type
|
|
TTestT = specialize TTest<T>;
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|