mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 02:42:05 +00:00
8 lines
146 B
Nim
8 lines
146 B
Nim
|
|
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 |