14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/wrong_de.rs:7:10
|
|
|
|
|
7 | #[derive(Deserialize)]
|
|
| ^^^^^^^^^^^ expected u16, found u8
|
|
help: you can cast an `u8` to `u16`, which will zero-extend the source value
|
|
|
|
|
7 | #[derive(Deserialize.into())]
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|