pascalabcnet/TestSuite/intellisense_tests/usesconstr1.pas

14 lines
242 B
ObjectPascal
Raw Permalink Normal View History

2018-08-20 22:34:35 +03:00
uses construnit1;
type
t2=class
class constructor := exit;
private constructor := exit;
public constructor(b:byte) := exit;
end;
begin
new t1{@constructor t1(b: byte);@}();
new t2{@constructor t2();@}();
end.