mirror of
https://github.com/nim-lang/Nim.git
synced 2026-09-17 18:44:53 +00:00
17 lines
162 B
Nim
17 lines
162 B
Nim
discard """
|
|
output: '''
|
|
4
|
|
2
|
|
6
|
|
'''
|
|
"""
|
|
|
|
# bug #560
|
|
template test(): untyped =
|
|
2 .. 6
|
|
|
|
var x: range[test()] = 4
|
|
echo x
|
|
echo low(typeof(x))
|
|
echo high(typeof(x))
|