DEBSOURCES
Skip Quicknav
sources / godot / 4.4.1%2Bds-1 / modules / gdscript / tests / scripts / analyzer / errors / dictionary_duplicate_key_python.gd
123456
func test(): var python_dict = { "a": 1, "b": 2, "a": 3, # Duplicate isn't allowed. }