summary refs log tree commit diff stats
path: root/tests/generics/t18823.nim
blob: 94c79aebe94a5cf15b60910ecfb9840db02ac3a7 (plain) (blame)
1
2
3
4
5
6
type BitsRange[T] = range[0..sizeof(T)*8-1]

proc bar[T](a: T; b: BitsRange[T]) =
  discard

bar(1, 2.Natural)