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
Method lookup fails on literals, e.g. 42.swap_bytes() and 42.0.sqrt(), even though it works once they are annotated with the type that they will get by default, 42i32.swap_bytes() and 42.0f32.sqrt() respectively.
The text was updated successfully, but these errors were encountered:
Method lookup fails on literals, e.g.
42.swap_bytes()
and42.0.sqrt()
, even though it works once they are annotated with the type that they will get by default,42i32.swap_bytes()
and42.0f32.sqrt()
respectively.The text was updated successfully, but these errors were encountered: