mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
12 lines
171 B
Rust
12 lines
171 B
Rust
|
//@ run-rustfix
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
fn mutate(_y: &mut i32) {}
|
||
|
|
||
|
fn foo(&(mut x): &i32) {
|
||
|
mutate(&mut x);
|
||
|
//~^ ERROR cannot borrow `x` as mutable
|
||
|
}
|
||
|
|
||
|
fn main() {}
|