summary refs log tree commit diff stats
path: root/tests/errmsgs/tstaticexprscope.nim
blob: 7af5bf9b37bb4caf71479bd1b3ab32cbcc3c3b32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  errmsg: "undeclared identifier: 'z'"
  line: 11
"""

# Open a new scope for static expr blocks
block:
  let a = static:
    var z = 123
    33
  echo z