mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
325 B
Rust
17 lines
325 B
Rust
enum TestEnum {
|
|
Item(i32),
|
|
}
|
|
|
|
fn test(_: &mut i32) {
|
|
}
|
|
|
|
fn main() {
|
|
let mut x = TestEnum::Item(10);
|
|
match x {
|
|
TestEnum::Item(ref mut x) => {
|
|
test(&mut x); //~ ERROR cannot borrow `x` as mutable, as it is not declared as mutable
|
|
//~| HELP try removing `&mut` here
|
|
}
|
|
}
|
|
}
|