blob: d74e5ba63b032e0d5dcac26d60e208f401bb24be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
discard """
errormsg: "the special identifier '_' is ignored in declarations and cannot be used"
"""
# issue #12094, #13804
template foo =
let _ = 1
echo _
foo()
|