X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a69bda3b9bde208d5489eb2e37fc982b6bc1d8df..9edba85f71d50d12996ef7bda576426362016171:/tests/data/cases/pattern_matching_complex.py?ds=inline 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