rust/tests/ui/borrowck/borrowck-borrow-immut-deref-of-box-as-mut.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
207 B
Rust
Raw Normal View History

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]
}