Files
openide/python/testData/inspections/PyUnreachableCodeInspection/UnreachablePatternAfterIrrefutableCaseClause.py
T
Aleksandr.Govenkoandintellij-monorepo-bot b0ca1ef976 [python] PY-81674 Highlight all unreachable code gray
GitOrigin-RevId: 5a8dba3a51b7e9d415deb5401213ad3b79ddd3c5
2025-06-13 16:56:16 +00:00

5 lines
236 B
Python

match 42:
case <error descr="Pattern makes remaining case clauses unreachable">x</error>:
pass
case <warning descr="This code is unreachable">42</warning>:
<warning descr="This code is unreachable">pass</warning>