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
Right now implicit casts for binary operations (following the spec) will turn something like 8w20 / (-2) into 8w20 / 8w254, which typechecks. I'm making exceptions in implicit casts for shifts right now to avoid similar problems but division is already convoluted enough.
The text was updated successfully, but these errors were encountered:
Right now implicit casts for binary operations (following the spec) will turn something like
8w20 / (-2)
into8w20 / 8w254
, which typechecks. I'm making exceptions in implicit casts for shifts right now to avoid similar problems but division is already convoluted enough.The text was updated successfully, but these errors were encountered: