pascalabcnet/TestSuite/intellisense_tests/usesconstr1.pas
Бондарев Иван f685999bf7 fix #1060
2018-08-20 21:34:35 +02:00

14 lines
242 B
ObjectPascal

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.