mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 07:03:37 +07:00
GitOrigin-RevId: 718645cc5dfd6d0a14f1bd802f3c5bb2bb2c6074
12 lines
448 B
Python
12 lines
448 B
Python
match 42:
|
|
case *xs, <error descr="Repeated star pattern">*ys</error>:
|
|
pass
|
|
case *xs, <error descr="Repeated star pattern">*_</error>:
|
|
pass
|
|
case *xs, <error descr="Repeated star pattern">*ys</error>, <error descr="Repeated star pattern">*zs</error>:
|
|
pass
|
|
case (*xs, <error descr="Repeated star pattern">*ys</error>):
|
|
pass
|
|
case [*xs, <error descr="Repeated star pattern">*ys</error>]:
|
|
pass
|