]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coercion/coerce-mut.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / coercion / coerce-mut.stderr
CommitLineData
b7449926 1error[E0308]: mismatched types
0731742a 2 --> $DIR/coerce-mut.rs:5:7
b7449926
XL
3 |
4LL | f(&x);
923072b8
FG
5 | - ^^ types differ in mutability
6 | |
7 | arguments to this function are incorrect
b7449926 8 |
60c5eb7d
XL
9 = note: expected mutable reference `&mut i32`
10 found reference `&{integer}`
923072b8
FG
11note: function defined here
12 --> $DIR/coerce-mut.rs:1:4
13 |
14LL | fn f(x: &mut i32) {}
15 | ^ -----------
b7449926
XL
16
17error: aborting due to previous error
18
19For more information about this error, try `rustc --explain E0308`.