Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/analyzer/errors/constant_collections.gd
59219 views
const ARRAY: Array = [0]
const DICTIONARY: Dictionary = { 0: 0 }

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