summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/match_with_subscript.gd
blob: 6d92db34c17947468ac7373fdcff5032d5994593 (plain)
1
2
3
4
5
func test():
	var dict = { a = 1 }
	match 2:
		dict["a"]:
			print("not allowed")