git-subtree-dir: engine git-subtree-mainline:b74841629egit-subtree-split:a8e37fc010
7 lines
117 B
GDScript
7 lines
117 B
GDScript
func coroutine() -> void:
|
|
@warning_ignore("redundant_await")
|
|
await 0
|
|
|
|
func test():
|
|
await coroutine()
|
|
coroutine()
|