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
Shifting operators like << should take the left-side type as its result type (i8 << u32 = i8) instead of following rules for other arithmetic operators (i8 + u32 = u32).
The text was updated successfully, but these errors were encountered:
Shifting operators like
<<
should take the left-side type as its result type (i8 << u32 = i8
) instead of following rules for other arithmetic operators (i8 + u32 = u32
).The text was updated successfully, but these errors were encountered: