fix: prevent local variables from being in scope during their own initializer
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
var A
|
||||
IO.print(A) // expect: null
|
||||
Reference in New Issue
Block a user
@@ -0,0 +1,2 @@
|
||||
var A
|
||||
IO.print(A) // expect: null
|
||||