rust/src/test/ui/coercion/coerce-mut.stderr

13 lines
310 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
--> $DIR/coerce-mut.rs:15:7
|
LL | f(&x);
| ^^ types differ in mutability
|
= note: expected type `&mut i32`
found type `&{integer}`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.