+ add test for already fixed #37380

This commit is contained in:
Sven/Sarah Barth 2023-03-15 23:38:08 +01:00
parent c1ecfc323a
commit 6aab856213

19
tests/webtbs/tw37380.pp Normal file
View 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.