Codebase Browser
godot
Go to App
godot
/
modules/gdscript/tests/scripts/parser/features/
match_multiple_variable_binds_in_pattern.gd
func test(): match [1, 2, 3]: [var a, var b, var c]: print(a == 1) print(b == 2) print(c == 3)