summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-05-03 15:44:46 +0200
committerGitHub <noreply@github.com>2021-05-03 15:44:46 +0200
commit4e06731346543a5129bae57a4d6a08f752bcfba1 (patch)
tree0c8aaef35764a8bd3cd13ee82e2e54282cf4da60 /modules/gdscript/tests/scripts/parser/errors/missing_argument.gd
parentdad77eed5c2ee1729b060cc19f7774f5ddc1811f (diff)
parent1e26bf23c22b2e425be3ee1b00326a0af129337f (diff)
downloadredot-engine-4e06731346543a5129bae57a4d6a08f752bcfba1.tar.gz
Merge pull request #47958 from Xrayez/gdscript-rename-test-scripts
Rename GDScript test script filenames to use `snake_case`
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, 6 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd b/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd
new file mode 100644
index 0000000000..c56ad94095
--- /dev/null
+++ b/modules/gdscript/tests/scripts/parser/errors/missing_argument.gd
@@ -0,0 +1,6 @@
+func args(a, b):
+ print(a)
+ print(b)
+
+func test():
+ args(1,)