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
structA;structB{b:u32}// warning: struct field is never used: `b`implA{fndo_stuff(&B{b}:&B){println!("{}", b);// b field is used}}fnmain(){let b = B{b:3};A::do_stuff(&b);}