mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 23:39:57 +07:00
GitOrigin-RevId: 718645cc5dfd6d0a14f1bd802f3c5bb2bb2c6074
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
|