Repository URL to install this package:
unit tw22160b1; {$mode delphi} interface type TWrapper<T> = class procedure Test; end; implementation uses uw22160b2; procedure TWrapper<T>.Test; begin end; end.