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
clippy::mem_forget is a lint in the restriction group (so it's probably not as common), which fires when Yokeable is derived on a struct with a type that implements Drop, like MutexGuard<'a, _>.
I'm sure this will not be the last time something like #4152 is needed.