pascalabcnet/TestSuite/errors/err0402.pas
Ivan Bondarev 5a20ef15dc #2415
2021-01-26 20:41:42 +01:00

13 lines
156 B
ObjectPascal

type
t0 = abstract class
private constructor := exit;
end;
t1<T> = class
where T: t0, constructor;
end;
begin
new t1<t0>;
end.