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

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