mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 01:59:28 +02:00
7 lines
80 B
ObjectPascal
7 lines
80 B
ObjectPascal
{ %OPT=-O- }
|
|
var x:integer;
|
|
begin
|
|
x := 1;
|
|
x := x mod -1; { buggy }
|
|
end.
|