X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e7ddf524b056d2bc42ee6b2b5c3314e0dd5d95fb..1c6b3a3a6fbc50b651d4ac34247903041d3f6329:/tests/data/pattern_matching_extras.py diff --git a/tests/data/pattern_matching_extras.py b/tests/data/pattern_matching_extras.py index 60ad8a3..c00585e 100644 --- a/tests/data/pattern_matching_extras.py +++ b/tests/data/pattern_matching_extras.py @@ -82,3 +82,13 @@ match match: match a, *b(), c: case d, *f, g: pass + + +match something: + case { + "key": key as key_1, + "password": PASS.ONE | PASS.TWO | PASS.THREE as password, + }: + pass + case {"maybe": something(complicated as this) as that}: + pass