pascalabcnet/TestSuite/units/u_interface1.pas

18 lines
228 B
ObjectPascal
Raw Permalink Normal View History

2017-05-25 11:37:16 +03:00
unit u_interface1;
type IInt1 = interface
function Test: integer;
end;
TClass = class(IInt1)
public function Test: integer;
begin
Result := 3;
end;
end;
var obj : IInt1;
begin
obj := new TClass;
assert(obj.Test=3);
end.