summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/match_guard_invalid_expression.gd
blob: 1dcb9fc36a0520bc67e8358921d1fc1d88127e3e (plain)
1
2
3
4
func test():
	match 0:
		_ when a == 0:
			print("a does not exist")