fpc/tests/webtbs/tw37380.pp
2023-03-15 23:39:59 +01:00

20 lines
272 B
ObjectPascal

{ %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.