mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
18 lines
138 B
ObjectPascal
18 lines
138 B
ObjectPascal
unit uw41007;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
procedure Test<T>(A: T); overload;
|
|
|
|
implementation
|
|
|
|
procedure Test<T>(A: T);
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|