diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-21 19:26:32 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-21 19:26:32 +0200 |
| commit | 7d3bee73e42b00a75bf9fafead8b200db994950c (patch) | |
| tree | 48c4715000967030ee2ba31f65536047682ce5a4 /modules/gdscript/tests/scripts/analyzer/errors | |
| parent | 38b8751f0ddfdf5184135cf16770feafe09cd844 (diff) | |
| parent | 6c59ed9485bbfadee73a08dfc57224e022626e6e (diff) | |
| download | redot-engine-7d3bee73e42b00a75bf9fafead8b200db994950c.tar.gz | |
Merge pull request #80247 from dalexeev/gds-for-loop-var-static-typing
GDScript: Add static typing for `for` loop variable
Diffstat (limited to 'modules/gdscript/tests/scripts/analyzer/errors')
| -rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.gd | 4 | ||||
| -rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.out | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.gd b/modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.gd new file mode 100644 index 0000000000..7e3b6e3c39 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.gd @@ -0,0 +1,4 @@ +func test(): + var a: Array[Resource] = [] + for node: Node in a: + print(node) diff --git a/modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.out b/modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.out new file mode 100644 index 0000000000..8f8a368f9a --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/for_loop_wrong_specified_type.out @@ -0,0 +1,2 @@ +GDTEST_ANALYZER_ERROR +Unable to iterate on value of type "Array[Resource]" with variable of type "Node". |
