summary refs log tree commit diff stats
path: root/tests/errmsgs/tstaticexprscope.nim
blob: 6969e389e34b563a20c05246abd168747e9a3047 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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