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
#[derive(Eq,PartialEq)]structS<'a>(&'a());fnf<'a,'b>(a:S<'a>,b:S<'b>){
a.eq(&b);// This is OK
a == b;// This errors that 'a cannot outlive 'b so that the expression is assignable}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: