mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-28 14:27:44 +00:00
13 lines
266 B
Rust
13 lines
266 B
Rust
//@ dont-require-annotations: NOTE
|
|
|
|
fn f(x: &mut i32) {}
|
|
|
|
fn main() {
|
|
let x = 0;
|
|
f(&x);
|
|
//~^ ERROR mismatched types
|
|
//~| NOTE expected mutable reference `&mut i32`
|
|
//~| NOTE found reference `&{integer}`
|
|
//~| NOTE types differ in mutability
|
|
}
|