mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
12 lines
192 B
ObjectPascal
12 lines
192 B
ObjectPascal
unit uw39677b;
|
|
{$mode Delphi}
|
|
interface
|
|
function Test<T>(const A: TArray<T>): Integer; overload;
|
|
implementation
|
|
function Test<T>(const A: TArray<T>): Integer;
|
|
begin
|
|
Writeln('b');
|
|
end;
|
|
end.
|
|
|