You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's behaving as expected. However, if I go to the location where the hint is reported, and invoke the "remove dead code" quick fix, the code is changed to:
The following code triggers the
unreachable_switch_case
hint:That's behaving as expected. However, if I go to the location where the hint is reported, and invoke the "remove dead code" quick fix, the code is changed to:
Which is not equivalent. The
print('hello');
line shouldn't have been deleted, because it is not dead; only the extraneouscase E.e1
is dead.The text was updated successfully, but these errors were encountered: