virtualx-engine/modules/gdscript/tests/scripts/runtime/features/await_on_void.gd

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

8 lines
105 B
GDScript3
Raw Normal View History

func wait() -> void:
pass
func test():
@warning_ignore("redundant_await")
await wait()
print("end")