mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 11:12:37 +00:00
13 lines
173 B
Nim
13 lines
173 B
Nim
discard """
|
|
output: '''1'''
|
|
"""
|
|
|
|
# bug #5854
|
|
type
|
|
n16* = range[0'i16..high(int16)]
|
|
|
|
var level: n16 = 1
|
|
let maxLevel: n16 = 1
|
|
|
|
level = min(level + 2, maxLevel)
|
|
echo level |