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

11 lines
159 B
ObjectPascal

unit construnit1;
type
t1=class
class constructor := exit;
private constructor := exit;
public constructor(b:byte) := exit;
end;
end.