rust/src/test/ui/issues/issue-36400.rs
2019-04-22 08:40:08 +01:00

7 lines
152 B
Rust

fn f(x: &mut u32) {}
fn main() {
let x = Box::new(3);
f(&mut *x); //~ ERROR cannot borrow `*x` as mutable, as `x` is not declared as mutable
}