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

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