summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/extend_variable.gd
blob: 6574d4cf31c02880bd8600f1de5adf48f178df44 (plain)
1
2
3
4
5
6
7
8
9
# GH-75870

var A = 1

class B extends A:
	pass

func test():
	pass