pascalabcnet/TestSuite/units/u_interface1.pas
Бондарев Иван 819c41c2f3 bug fix #406
2017-05-25 10:37:16 +02:00

18 lines
228 B
ObjectPascal

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.