pascalabcnet/TestSuite/intellisense_tests/construnit1.pas

11 lines
159 B
ObjectPascal
Raw Permalink Normal View History

2018-08-20 22:34:35 +03:00
unit construnit1;
type
t1=class
class constructor := exit;
private constructor := exit;
public constructor(b:byte) := exit;
end;
end.