mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-03 05:59:02 +00:00
22 lines
306 B
Nim
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"
|