pascalabcnet/TestSuite/errors/err0409.pas

14 lines
178 B
ObjectPascal
Raw Permalink Normal View History

2021-03-28 15:08:47 +03:00
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.