mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
12 lines
125 B
Nim
12 lines
125 B
Nim
discard """
|
|
errormsg: "undeclared identifier: '_'"
|
|
"""
|
|
|
|
# issue #12094, #13804
|
|
|
|
template foo =
|
|
let _ = 1
|
|
echo _
|
|
|
|
foo()
|