pascalabcnet/TestSuite/where7.pas
Mikhalkovich Stanislav c9617a5afc fix #2253
ABCPascal.cs
ABCPascalYacc.cs вернул на место
2020-06-18 23:17:13 +03:00

13 lines
159 B
ObjectPascal

type
t0=record end;
t1<T1>=class
where T1: record;
a: T1;
end;
t2<T>=class(t1<T>) where T: record; end;
begin
var a := new t2<t0>;
end.