pascalabcnet/TestSuite/errors/err0409.pas
Ivan Bondarev 31cf309e4e fix #2038
fix #2033
2021-03-28 14:08:47 +02:00

14 lines
178 B
ObjectPascal

type
I1 = interface
property X: byte read;
end;
T = class(I1)
public
property T.X: byte read 0;
end;
begin
var x := new T();
Writeln(I1(x).X);
end.