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

30 lines
355 B
ObjectPascal

Unit
interface_unit2;
interface
uses
interface_unit;
type
MyC = class(object{, System.ICloneable}, MyInter1)
public
constructor;
begin
end;
procedure p(x: integer);
begin
writeln(x);
end;
function Clone: object; virtual;
begin
result := new MyC;
end;
end;
implementation
end.