summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/errors/missing_argument.gd')
-rw-r--r--modules/gdscript/tests/scripts/parser/errors/missing_argument.gd6
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd b/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd
deleted file mode 100644
index c56ad94095..0000000000
--- a/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd
+++ /dev/null
@@ -1,6 +0,0 @@
-func args(a, b):
- print(a)
- print(b)
-
-func test():
- args(1,)