mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-25 08:43:58 +00:00
12 lines
141 B
Nim
12 lines
141 B
Nim
discard """
|
|
errormsg: "over- or underflow"
|
|
"""
|
|
|
|
static:
|
|
proc p =
|
|
var
|
|
x = int64.high
|
|
discard x + 1
|
|
doAssert false
|
|
p()
|