mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
15 lines
165 B
ObjectPascal
15 lines
165 B
ObjectPascal
{ %opt=-Oonofastmath -CE -Oonoconstprop }
|
|
{$mode objfpc}
|
|
uses
|
|
sysutils;
|
|
var
|
|
a : real;
|
|
begin
|
|
try
|
|
writeln(a/a);
|
|
except
|
|
halt(0);
|
|
end;
|
|
halt(1);
|
|
end.
|