summary refs log tree commit diff stats
path: root/tests/tuples/t12892.nim
blob: d69e99c7fc2fe1ebae0ad935b950d83d69216ba5 (plain) (blame)
1
2
3
4
5
6
7
8
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)"