fpc/tests/webtbs/uw39677b.pp
2022-04-22 10:40:58 +02:00

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.