diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/errors/assignment_without_identifier.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/errors/assignment_without_identifier.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/errors/assignment_without_identifier.gd b/modules/gdscript/tests/scripts/parser/errors/assignment_without_identifier.gd new file mode 100644 index 0000000000..031ea523c8 --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/assignment_without_identifier.gd @@ -0,0 +1,2 @@ +func test(): + var = "world" |