mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
207 B
Rust
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]
|
|
}
|