mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 10:52:14 +00:00
9 lines
230 B
Nim
9 lines
230 B
Nim
discard """
|
|
disabled: i386
|
|
"""
|
|
|
|
template works[T](): auto = T.high - 1
|
|
template breaks[T](): auto = (T.high - 1, true)
|
|
doAssert $works[uint]() == "18446744073709551614"
|
|
doAssert $breaks[uint]() == "(18446744073709551614, true)"
|