summary refs log tree commit diff stats
path: root/tests/template/t21532.nim
blob: 3193b0dc3559ae15a1f56e3ee3e713f0a688272c (plain) (blame)
1
2
3
4
5
6
7
8
template elementType(a: untyped): typedesc =
  typeof(block: (for ai in a: ai))

func fn[T](a: T) =
  doAssert elementType(a) is int

@[1,2,3].fn