]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coercion/coerce-mut.stderr
Auto merge of #96100 - Raekye:master, r=dtolnay
[rust.git] / src / test / ui / coercion / coerce-mut.stderr
1 error[E0308]: mismatched types
2   --> $DIR/coerce-mut.rs:5:7
3    |
4 LL |     f(&x);
5    |     - ^^ types differ in mutability
6    |     |
7    |     arguments to this function are incorrect
8    |
9    = note: expected mutable reference `&mut i32`
10                       found reference `&{integer}`
11 note: function defined here
12   --> $DIR/coerce-mut.rs:1:4
13    |
14 LL | fn f(x: &mut i32) {}
15    |    ^ -----------
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0308`.