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
Discovered today: both let _ = and _ = (destructuring assignment) can be used to ignore #[must_use], however because the former is a statement while the latter is an expression they have a difference with temporary lifetime extension:
Discovered today: both
let _ =
and_ =
(destructuring assignment) can be used to ignore#[must_use]
, however because the former is a statement while the latter is an expression they have a difference with temporary lifetime extension:Prints:
While:
Prints:
The text was updated successfully, but these errors were encountered: