summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/variable_declaration.gd')
-rw-r--r--modules/gdscript/tests/scripts/parser/features/variable_declaration.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd b/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd
index 38567d35c6..65013c4301 100644
--- a/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd
+++ b/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd
@@ -3,6 +3,7 @@ var m2 = 22 # Init.
var m3: String # No init, typed.
var m4: String = "44" # Init, typed.
+
func test():
var loc5 # No init, local.
var loc6 = 66 # Init, local.