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

                     
                                                                                            
   







                                                                                             

 
discard """
  file: "tfloat1.nim"
  outputsub: "Error: unhandled exception: FPU operation caused an overflow [EFloatOverflow]"
"""
# Test new floating point exceptions

{.floatChecks: on.}

var x = 0.8
var y = 0.0

echo x / y #OUT Error: unhandled exception: FPU operation caused an overflow [EFloatOverflow]