pascalabcnet/TestSamples/CompilationSamples/new_expr_as_statement.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

13 lines
121 B
ObjectPascal

type c=class
constructor;
begin
writeln('OK');
end;
end;
var cc:c;
begin
cc:=new c;
new c;
readln;
end.