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
As originally "reported" here, ref mut bindings are not working properly:
#![allow(dead_code)]use std::fmt::Debug;structS(Box<Debug + 'static>);implS{fnbar<'a>(&'amutself)->&'amutBox<Debug + 'a>{matchself.0{refmut x => x }// should not compile, but does}}fnmain(){}