summary refs log tree commit diff stats
path: root/tests/float/tfloat2.nim
blob: 51883674f0220195175f672494846830bc897c94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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]