mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 05:08:06 +02:00
11 lines
85 B
ObjectPascal
11 lines
85 B
ObjectPascal
{ %fail }
|
|
|
|
program Project1;
|
|
|
|
var
|
|
i: Longint;
|
|
begin
|
|
i := 2;
|
|
i := i div 0;
|
|
end.
|