]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coercion/coerce-reborrow-multi-arg-fail.stderr
Rollup merge of #103729 - RalfJung:align-of-val-packed, r=oli-obk
[rust.git] / src / test / ui / coercion / coerce-reborrow-multi-arg-fail.stderr
1 error[E0308]: mismatched types
2   --> $DIR/coerce-reborrow-multi-arg-fail.rs:4:18
3    |
4 LL |     test(&mut 7, &7);
5    |     ----         ^^ types differ in mutability
6    |     |
7    |     arguments to this function are incorrect
8    |
9    = note: expected mutable reference `&mut {integer}`
10                       found reference `&{integer}`
11 note: function defined here
12   --> $DIR/coerce-reborrow-multi-arg-fail.rs:1:4
13    |
14 LL | fn test<T>(_a: T, _b: T) {}
15    |    ^^^^           -----
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0308`.