Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/analyzer/warnings/missing_await.gd
11327 views
func coroutine() -> void:
	@warning_ignore("redundant_await")
	await 0

func test():
	await coroutine()
	coroutine()