pascalabcnet/TestSuite/questionpoint1.pas

11 lines
143 B
ObjectPascal
Raw Permalink Normal View History

2018-09-30 07:45:48 +03:00
type
t1=class
o: object;
property p1: System.Type read o?.GetType;
end;
begin
var t := new t1;
Assert(t.p1=nil);
end.