X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/722735d20ebdc66c0da0e0df7658293455694500..bb588073ab286a9f1f8d839ab2cebe13011dd22c:/tests/data/cases/pattern_matching_complex.py diff --git a/tests/data/cases/pattern_matching_complex.py b/tests/data/cases/pattern_matching_complex.py index b4355c7..10b4d26 100644 --- a/tests/data/cases/pattern_matching_complex.py +++ b/tests/data/cases/pattern_matching_complex.py @@ -143,3 +143,7 @@ match x: y = 1 case []: y = 2 +# issue 3790 +match (X.type, Y): + case _: + pass