mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
215 B
Rust
11 lines
215 B
Rust
fn f(x: &mut i32) {}
|
|
|
|
fn main() {
|
|
let x = 0;
|
|
f(&x);
|
|
//~^ ERROR mismatched types
|
|
//~| expected mutable reference `&mut i32`
|
|
//~| found reference `&{integer}`
|
|
//~| types differ in mutability
|
|
}
|