pascalabcnet/TestSuite/usesunits/use_interface5.pas

15 lines
162 B
ObjectPascal
Raw Permalink Normal View History

2020-02-02 21:07:47 +03:00
uses u_interface5;
type
t1 = class(I)
public function I.f1: byte := 1;
end;
begin
var o: I;
o := new t1;
assert(o.f1 = 1);
end.