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
In a function like fn foo(x: &i32), the pointer is known not to be captured by the function because its lifetime doesn't allow it. We used to emit the nocapture attribute for such function arguments but don't do so anymore.
In a function like
fn foo(x: &i32), the pointer is known not to be captured by the function because its lifetime doesn't allow it. We used to emit thenocaptureattribute for such function arguments but don't do so anymore.