mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-11 22:08:54 +00:00
11
tests/defer/t22309.nim
Normal file
11
tests/defer/t22309.nim
Normal file
@@ -0,0 +1,11 @@
|
||||
block:
|
||||
defer:
|
||||
let a = 42
|
||||
doAssert not declared(a)
|
||||
|
||||
proc lol() =
|
||||
defer:
|
||||
let a = 42
|
||||
doAssert not declared(a)
|
||||
|
||||
lol()
|
||||
Reference in New Issue
Block a user