summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/dictionary_duplicate_key_lua.gd
blob: 7a922cd73eb69a4aaba0152bbb3807f4c288e5a1 (plain)
1
2
3
4
5
6
func test():
	var lua_dict = {
		a = 1,
		b = 2,
		a = 3, # Duplicate isn't allowed.
	}