pascalabcnet/TestSuite/autoproperty7.pas

12 lines
192 B
ObjectPascal
Raw Permalink Normal View History

2019-02-09 18:20:39 +03:00
type
TSome = auto class
public
auto property A: byte;
auto property B: object;
end;
begin
var node := new TSome(1, nil);
assert(node.A = 1);
assert(node.B = nil);
end.