mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
13 lines
241 B
ObjectPascal
13 lines
241 B
ObjectPascal
{ Old file: tbs0116.pp }
|
|
{ when local variable size is > $ffff, enter can't be used to create the stack frame, but it is with -Og }
|
|
|
|
Procedure test;
|
|
{compile with -Og to show bug}
|
|
|
|
Var a: Array[1..4000000] of longint;
|
|
Begin
|
|
End;
|
|
|
|
Begin
|
|
End.
|