GDScript: Fix bug with identifier shadowed below in current scope
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
var a = 1
|
||||
|
||||
func test():
|
||||
print(a)
|
||||
var a = 2
|
||||
print(a)
|
||||
Reference in New Issue
Block a user