pascalabcnet/TestSuite/units/u_generics6.pas
Ivan Bondarev 3932a53f77 #2048
2021-04-25 12:36:35 +02:00

17 lines
251 B
ObjectPascal

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.