mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:47:52 +02:00
+ add test for already fixed #37380
This commit is contained in:
parent
c1ecfc323a
commit
6aab856213
19
tests/webtbs/tw37380.pp
Normal file
19
tests/webtbs/tw37380.pp
Normal file
@ -0,0 +1,19 @@
|
||||
{ %NORUN }
|
||||
|
||||
program tw37380;
|
||||
{$mode delphi}
|
||||
function GTest<T>(a: T; b: T = T(1)): T;
|
||||
begin
|
||||
Result := a + b;
|
||||
end;
|
||||
|
||||
function Foobar(a: Single; b: Single = Single(1)): Single;
|
||||
begin
|
||||
Result := a + b;
|
||||
end;
|
||||
|
||||
begin
|
||||
WriteLn(GTest<Single>(2, 1));
|
||||
WriteLn(Foobar(2));
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user