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

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