pascalabcnet/TestSuite/intellisense_tests/constr1.pas

8 lines
107 B
ObjectPascal
Raw Permalink Normal View History

2018-08-28 21:11:28 +03:00
type
t1 = class
constructor(b: integer) := exit;
end;
begin
new t1{@constructor t1();@};
end.