mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 10:52:14 +00:00
12 lines
196 B
Nim
12 lines
196 B
Nim
discard """
|
|
errormsg: "invalid type: 'untyped' in this context: 'proc (a: varargs[untyped])' for proc"
|
|
line: 8
|
|
"""
|
|
|
|
import typetraits
|
|
|
|
proc foo(a:varargs[untyped]) =
|
|
echo a[0].type.name
|
|
|
|
foo(1)
|