You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Do error when for variable conflicts with a variable in scope
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
func test():
|
||||
var TEST = 1
|
||||
for TEST in 2:
|
||||
pass
|
||||
@@ -0,0 +1,2 @@
|
||||
GDTEST_PARSER_ERROR
|
||||
There is already a variable named "TEST" declared in this scope.
|
||||
@@ -0,0 +1,3 @@
|
||||
func test():
|
||||
var TEST = 1
|
||||
var TEST = 2
|
||||
@@ -0,0 +1,2 @@
|
||||
GDTEST_PARSER_ERROR
|
||||
There is already a variable named "TEST" declared in this scope.
|
||||
Reference in New Issue
Block a user