]> git.proxmox.com Git - rustc.git/blob - src/test/ui/coercion/coerce-mut.stderr
New upstream version 1.63.0+dfsg1
[rustc.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`.