pascalabcnet/TestSuite/units/u_generics6.pas

17 lines
251 B
ObjectPascal
Raw Permalink Normal View History

2021-04-25 13:36:35 +03:00
unit u_generics6;
var i: integer;
type
r1 = record(System.ICloneable)
public function Clone: object;
begin
i := 1;
end;
end;
procedure p1<T>(a: T); where T: System.ICloneable;
begin
System.ICloneable(a).Clone;
end;
end.