1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Merge pull request #62701 from cdemirer/for-variable-conflict

This commit is contained in:
Rémi Verschelde
2022-07-06 16:02:49 +02:00
committed by GitHub
5 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
func test():
var TEST = 1
for TEST in 2:
pass

View File

@@ -0,0 +1,2 @@
GDTEST_PARSER_ERROR
There is already a variable named "TEST" declared in this scope.

View File

@@ -0,0 +1,3 @@
func test():
var TEST = 1
var TEST = 2

View File

@@ -0,0 +1,2 @@
GDTEST_PARSER_ERROR
There is already a variable named "TEST" declared in this scope.