mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
15 lines
154 B
Nim
15 lines
154 B
Nim
discard """
|
|
output: '''253'''
|
|
"""
|
|
|
|
# bug #2427
|
|
|
|
import unsigned
|
|
|
|
var x = 0'u8
|
|
dec x # OverflowError
|
|
x -= 1 # OverflowError
|
|
x = x - 1 # No error
|
|
|
|
echo x
|