mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
26 lines
439 B
Nim
26 lines
439 B
Nim
discard """
|
|
cmd: "nim check $file"
|
|
errormsg: "'t' has unspecified generic parameters"
|
|
nimout: '''
|
|
t5167_5.nim(10, 16) Error: expression 'system' has no type (or is ambiguous)
|
|
t5167_5.nim(21, 9) Error: 't' has unspecified generic parameters
|
|
'''
|
|
"""
|
|
# issue #11942
|
|
discard newSeq[system]()
|
|
|
|
# issue #5167
|
|
template t[B]() =
|
|
echo "foo1"
|
|
|
|
macro m[T]: untyped = nil
|
|
|
|
proc bar(x: proc (x: int)) =
|
|
echo "bar"
|
|
|
|
let x = t
|
|
bar t
|
|
|
|
let y = m
|
|
bar m
|