summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/static_func_call_non_static.gd
blob: 1d8f076857955e576413964e3e655429d7c37d6e (plain)
1
2
3
4
5
6
7
8
static func static_func():
	non_static_func()

func non_static_func():
	pass

func test():
	pass