pascalabcnet/TestSuite/questionpoint1.pas
2018-09-30 07:45:48 +03:00

11 lines
143 B
ObjectPascal

type
t1=class
o: object;
property p1: System.Type read o?.GetType;
end;
begin
var t := new t1;
Assert(t.p1=nil);
end.