summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/errors/constant_dictionary_is_deep.gd
blob: 4763210a7f1a8f771b95a27d0dd81a738ecc7558 (plain)
1
2
3
4
5
6
const dictionary := {0: [0]}

func test():
	var array := dictionary[0]
	var key: int = 0
	array[key] = 0