summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/constant_array_index_assign.gd
blob: b8603dd4ca5f7b19c549132005dd1ec33f4e7ad6 (plain)
1
2
3
4
5
const array: Array = [0]

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