summary refs log blame commit diff stats
path: root/tests/accept/run/tfloat2.nim
blob: b0df1e8b70e6cc4fd4d5bf22fe8a9058bc788f64 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                     
                                                                                              
   







                                                                                               

 
discard """
  file: "tfloat2.nim"
  outputsub: "Error: unhandled exception: FPU operation caused a NaN result [EFloatInvalidOp]"
"""
# 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]