summary refs log tree commit diff stats
path: root/tests/float/tfloat1.nim
blob: ed99260ea857e3682b6ec0a91da047595e79783e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
discard """
  file: "tfloat1.nim"
  outputsub: "Error: unhandled exception: FPU operation caused an overflow [FloatOverflowError]"
  exitcode: "1"
"""
# 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