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