godot/modules/gdscript/tests/scripts/analyzer/warnings/missing_await.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
117 B
GDScript3
Raw Normal View History

func coroutine() -> void:
@warning_ignore("redundant_await")
await 0
func test():
await coroutine()
coroutine()