summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/runtime/features/await_on_void.gd
blob: 1490a164c988967f5c769a272f823f18e2202dd1 (plain)
1
2
3
4
5
6
7
func wait() -> void:
	pass

func test():
	@warning_ignore("redundant_await")
	await wait()
	print("end")