diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-31 11:04:21 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-31 11:04:21 +0100 |
commit | 99a44f846975a87f7dc2f121818c9570b0457b96 (patch) | |
tree | 0562814c260f3f73c4cddd18f2cb6a18262b1f20 /modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.out | |
parent | 97de7f39e19ed3658073a6bb626bcafb33039a17 (diff) | |
parent | 5909f9f07547895de24fb6965d44c859b69a54a2 (diff) | |
download | redot-engine-99a44f846975a87f7dc2f121818c9570b0457b96.tar.gz |
Merge pull request #69248 from vonagam/fixing-typed-arrays
GDScript: Fix typed arrays
Diffstat (limited to 'modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.out')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.out b/modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.out index 6f7f0783f0..015ad756f8 100644 --- a/modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.out +++ b/modules/gdscript/tests/scripts/analyzer/errors/invalid_array_index.out @@ -1,2 +1,2 @@ GDTEST_ANALYZER_ERROR -Cannot get index "true" from "[0, 1]". +Invalid index type "bool" for a base of type "Array". |