mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
15 lines
173 B
ObjectPascal
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. |