Files
Nim/tests/whenstmt/twhen_nimvm_push.nim
2026-07-27 21:58:14 +08:00

22 lines
306 B
Nim

discard """
output: "ok"
"""
var overflowDetected = false
when nimvm:
{.push overflowChecks: off.}
else:
var branchX = high(int)
try:
inc branchX
except OverflowDefect:
overflowDetected = true
doAssert overflowDetected
var x = high(int)
try:
inc x
except OverflowDefect:
echo "ok"