pascalabcnet/TestSuite/errors/err0393.pas

12 lines
158 B
ObjectPascal
Raw Normal View History

2021-01-03 14:04:45 +03:00
type
t0 = class end;
t1<T> = class
where T: t0;
end;
begin
// Компилируется, а не должно
var a: t1<byte>;
end.