diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2023-01-10 07:58:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 07:58:29 +0100 |
commit | c894edd4cb320129a64858c61e45679e42326d64 (patch) | |
tree | 9cb954d64eecd758a9d6f9f8dd0445c895921e3e /modules/gdscript/tests | |
parent | 70b24e28d8128d51283c389142f5f783d4b66da7 (diff) | |
parent | ff505c9875fb54a082b7ff4fb28b975754e42048 (diff) |
Merge pull request #71140 from vonagam/fix-const-index-subscript-type
GDScript: Fix type for index subscript on constant
Diffstat (limited to 'modules/gdscript/tests')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.gd | 5 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.out | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.gd b/modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.gd new file mode 100644 index 0000000000..87fbe1229c --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.gd @@ -0,0 +1,5 @@ +const base := [0] + +func test(): + var sub := base[0] + if sub is String: pass diff --git a/modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.out b/modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.out new file mode 100644 index 0000000000..54c190cf8a --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/constant_subscript_type.out @@ -0,0 +1,2 @@ +GDTEST_ANALYZER_ERROR +Expression is of type "int" so it can't be of type "String". |