DEBSOURCES
Skip Quicknav
sources / rust-auto-impl / 1.3.0-1 / tests / compile-fail / mut_self_for_rc.rs
12345678910
use auto_impl::auto_impl; #[auto_impl(Rc)] trait Foo { fn foo(&mut self); } fn main() {}