mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
7 lines
112 B
ObjectPascal
7 lines
112 B
ObjectPascal
{ %OPT=-O3 }
|
|
var a, b : integer;
|
|
begin
|
|
b := 0;
|
|
b := b - a - a { `b := b - a` won't trigger the error }
|
|
end.
|