summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/constant_dictionary_index_assign.gd
blob: 9b5112b7881cae20b2a75e5e60c3e6d1c57c14d2 (plain)
1
2
3
4
5
const dictionary := {}

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