rust/tests/ui/borrowck/borrowck-borrow-immut-deref...

15 lines
207 B
Rust

struct A;
impl A {
fn foo(&mut self) {
}
}
pub fn main() {
let a: Box<_> = Box::new(A);
a.foo();
//~^ ERROR cannot borrow `*a` as mutable, as `a` is not declared as mutable [E0596]
}