summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/outer_class_constants.gd
blob: 1cf3870a8e69ed8e50f8489c6ce30c5ad462e08f (plain)
1
2
3
4
5
6
7
8
class Outer:
	const OUTER_CONST: = 0
	class Inner:
		pass

func test() -> void:
	var type: = Outer.Inner
	print(type.OUTER_CONST)