blob: bc820ee9f9141a7d506748653d0be7d6201e5e2d [file] [log] [blame]
#![feature(box_syntax)]
struct A;
impl A {
fn foo(&mut self) {
}
}
pub fn main() {
let a: Box<_> = box A;
a.foo();
//~^ ERROR cannot borrow `*a` as mutable, as `a` is not declared as mutable [E0596]
}