diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/errors/variable_conflicts_constant.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/errors/variable_conflicts_constant.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/errors/variable_conflicts_constant.gd b/modules/gdscript/tests/scripts/parser/errors/variable_conflicts_constant.gd new file mode 100644 index 0000000000..0d8843df20 --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/variable_conflicts_constant.gd @@ -0,0 +1,3 @@ +func test(): + const TEST = 25 + var TEST = 50 |