mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
12 lines
168 B
Nim
12 lines
168 B
Nim
discard """
|
|
errormsg: "undeclared identifier: 'z'"
|
|
line: 11
|
|
"""
|
|
|
|
# Open a new scope for static expr blocks
|
|
block:
|
|
let a = static:
|
|
var z = 123
|
|
33
|
|
echo z
|