pascalabcnet/TestSuite/ShortClassConstructor.pas

8 lines
98 B
ObjectPascal
Raw Normal View History

2018-05-22 10:47:48 +03:00
type
t1 = class
class constructor := Assert(True);
end;
begin
var t := new t1;
end.