summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/features/await_with_signals_no_warning.gd
blob: 9a7c6a8250ae9f10348c54d7edef84d960de0e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# https://github.com/godotengine/godot/issues/54589
# https://github.com/godotengine/godot/issues/56265

extends Resource

func test():
	print("okay")
	await self.changed
	await unknown(self)

func unknown(arg):
	await arg.changed