58b3af4c29
The following changes are included: - Delete per-file license notices at the top of each file. - Delete the first paragraph of LICENSE-MIT (an inaccurate pseudo-copyright line), leaving only the text of the MIT license. Nothing about the license of Serde code has changed, only our understanding of how to correctly communicate that license has changed. This mirrors an equivalent change being applied in the rust-lang/rust repository.
13 lines
315 B
Plaintext
13 lines
315 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/wrong_ser.rs:10:10
|
|
|
|
|
10 | #[derive(Serialize)]
|
|
| ^^^^^^^^^ expected u8, found u16
|
|
|
|
|
= note: expected type `&u8`
|
|
found type `&u16`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|