summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/extend_non_class_constant_1.gd
blob: 72af0991587cdeaabbc98e46d614e138e6b6c894 (plain)
1
2
3
4
5
6
7
8
9
# GH-75870

const A = 1

class B extends A:
	pass

func test():
	pass