summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/call_not_existing_static_method.gd
blob: 87d1b9ea187ec70614a48435943d8184312b6550 (plain)
1
2
3
4
5
6
7
# GH-73283

class MyClass:
	pass

func test():
	MyClass.not_existing_method()