mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
20 lines
206 B
ObjectPascal
20 lines
206 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw38083;
|
|
|
|
{$MODE Delphi}
|
|
|
|
procedure Test<T>(A: T; B: Boolean); overload;
|
|
begin
|
|
|
|
end;
|
|
|
|
procedure Test(A: String); overload;
|
|
begin
|
|
Test<String>(A, True);
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|