diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2023-02-03 20:51:00 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2023-02-06 23:02:14 +0300 |
commit | 685db28e2920150737bc53d5c86dcc64cc42bb60 (patch) | |
tree | f9a4ba00e49a5ae43bed3f6718a039471276eeb2 /modules/gdscript/tests/scripts/analyzer/errors | |
parent | de4369ca4b5516b69d78b5cf979af14fbe997f40 (diff) |
GDScript: Fix `await` type inference
Diffstat (limited to 'modules/gdscript/tests/scripts/analyzer/errors')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.gd | 4 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.out | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.gd b/modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.gd new file mode 100644 index 0000000000..c787d9e50e --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.gd @@ -0,0 +1,4 @@ +signal my_signal() + +func test(): + var _a := await my_signal diff --git a/modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.out b/modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.out new file mode 100644 index 0000000000..8f8744ad7e --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/await_signal_no_infer.out @@ -0,0 +1,2 @@ +GDTEST_ANALYZER_ERROR +Cannot infer the type of "_a" variable because the value doesn't have a set type. |