Codebase Browser
godot
Go to App
godot
/
modules/gdscript/tests/scripts/parser/errors/
match_guard_with_assignment.gd
func test(): var a = 0 match a: 0 when a = 1: print("assignment not allowed on pattern guard")