mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 21:29:43 +02:00
15 lines
218 B
ObjectPascal
15 lines
218 B
ObjectPascal
{ %NORUN }
|
|
{$mode objfpc}
|
|
{
|
|
test lists of types/contants
|
|
}
|
|
program tgenconst2;
|
|
|
|
type
|
|
generic TMoreThanOne<T1,T2;const U1,U2:integer> = record end;
|
|
|
|
var
|
|
a: specialize TMoreThanOne<integer,string,10,10>;
|
|
begin
|
|
end.
|