Files
Nim/tests/run/tfloat2.nim
2011-11-19 15:45:51 +01:00

16 lines
331 B
Nim
Executable File

discard """
file: "tfloat2.nim"
outputsub: "Error: unhandled exception: FPU operation caused a NaN result [EFloatInvalidOp]"
exitcode: "1"
"""
# Test new floating point exceptions
{.floatChecks: on.}
var x = 0.0
var y = 0.0
echo x / y #OUT Error: unhandled exception: FPU operation caused a NaN result [EFloatInvalidOp]