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.gd12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/gdscript/tests/scripts/parser-features/variable-declaration.gd b/modules/gdscript/tests/scripts/parser-features/variable-declaration.gd
deleted file mode 100644
index 3b48f10ca7..0000000000
--- a/modules/gdscript/tests/scripts/parser-features/variable-declaration.gd
+++ /dev/null
@@ -1,12 +0,0 @@
-var a # No init.
-var b = 42 # Init.
-
-func test():
- var c # No init, local.
- var d = 23 # Init, local.
-
- a = 1
- c = 2
-
- prints(a, b, c, d)
- print("OK")