fpc/tests/webtbs/tw40182.pp
florian 99b01f6634 * second mul might get called with a zero operand if the other has a side effect,
handle this correctly in ti386addnode.second_mul64bit, resolves #40182
2023-03-06 23:19:34 +01:00

15 lines
173 B
ObjectPascal

{ %opt=-CO }
program test;
function somenumber: int64;
begin
exit(2);
end;
function foo: int64;
begin
exit (0*somenumber); //Internal error 2014011604
end;
begin
end.