Files
Aleksandr.Govenkoandintellij-monorepo-bot b0ca1ef976 [python] PY-81674 Highlight all unreachable code gray
GitOrigin-RevId: 5a8dba3a51b7e9d415deb5401213ad3b79ddd3c5
2025-06-13 16:56:16 +00:00

4 lines
194 B
Python

def test_exit():
exit()
<warning descr="This code is unreachable">print("should be reported as unreachable")</warning>
<warning descr="This code is unreachable">return True</warning>