pascalabcnet/TestSuite/errors/err0393.pas
Ivan Bondarev 34ebdb7702 bug fix #2382
bug fix #2379
2021-01-03 12:04:45 +01:00

12 lines
158 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

type
t0 = class end;
t1<T> = class
where T: t0;
end;
begin
// Компилируется, а не должно
var a: t1<byte>;
end.