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
/home/msullivan/lol2.py:4: error: Revealed type is 'Union[builtins.int, builtins.float]'
which is of course also wrong.
The prior version produced false positives in the then branch and false negatives in the else branch, while the new version produces false positives in the else branch and works correctly in the then branch.
The text was updated successfully, but these errors were encountered:
This test case
produces:
But the type in the
else
branch ought to beint
.Prior to #6114, it produced
which is of course also wrong.
The prior version produced false positives in the then branch and false negatives in the else branch, while the new version produces false positives in the else branch and works correctly in the then branch.
The text was updated successfully, but these errors were encountered: