mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-19 02:57:10 +00:00
13 lines
150 B
Nim
13 lines
150 B
Nim
discard """
|
|
errormsg: "over- or underflow"
|
|
"""
|
|
|
|
static:
|
|
proc p =
|
|
var
|
|
x = int64.low
|
|
y = 1
|
|
discard x - y
|
|
assert false
|
|
p()
|