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

12 lines
147 B
ObjectPascal

type c=class
constructor create;
begin
end;
end;
var cc:c;
begin
cc:=c.create;
Writeln((cc is c).tostring);
Writeln(cc is c);
readln;
end.