mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
10 lines
264 B
Python
10 lines
264 B
Python
match 42:
|
|
case <error descr="Pattern makes remaining case clauses unreachable">_</error>:
|
|
pass
|
|
case x if x > 0:
|
|
pass
|
|
case <error descr="Pattern makes remaining case clauses unreachable">x</error>:
|
|
pass
|
|
case 42:
|
|
pass
|