fpc/tests/test/tgenconst2.pp

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.