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

18 lines
197 B
ObjectPascal

{type
Int=class
i:integer;
constructor create;
begin
i:=1;
end;
function operator*=(j:integer):Int;
begin
i:=i*j;
end;
end;
var i:int;
}
begin
end.