Update test suite to nightly-2019-11-26
This commit is contained in:
parent
0b303c766c
commit
90486607a1
@ -4,7 +4,5 @@ error[E0308]: mismatched types
|
|||||||
7 | #[derive(Deserialize)]
|
7 | #[derive(Deserialize)]
|
||||||
| ^^^^^^^^^^^
|
| ^^^^^^^^^^^
|
||||||
| |
|
| |
|
||||||
| expected u16, found u8
|
| expected `u16`, found `u8`
|
||||||
| help: you can convert an `u8` to `u16`: `Deserialize.into()`
|
| help: you can convert an `u8` to `u16`: `Deserialize.into()`
|
||||||
|
|
||||||
For more information about this error, try `rustc --explain E0308`.
|
|
||||||
|
@ -2,7 +2,7 @@ error[E0308]: mismatched types
|
|||||||
--> $DIR/wrong_getter.rs:15:10
|
--> $DIR/wrong_getter.rs:15:10
|
||||||
|
|
|
|
||||||
15 | #[derive(Serialize)]
|
15 | #[derive(Serialize)]
|
||||||
| ^^^^^^^^^ expected u8, found u16
|
| ^^^^^^^^^ expected `u8`, found `u16`
|
||||||
|
|
|
|
||||||
= note: expected type `&u8`
|
= note: expected reference `&u8`
|
||||||
found type `&u16`
|
found reference `&u16`
|
||||||
|
@ -2,9 +2,7 @@ error[E0308]: mismatched types
|
|||||||
--> $DIR/wrong_ser.rs:9:10
|
--> $DIR/wrong_ser.rs:9:10
|
||||||
|
|
|
|
||||||
9 | #[derive(Serialize)]
|
9 | #[derive(Serialize)]
|
||||||
| ^^^^^^^^^ expected u8, found u16
|
| ^^^^^^^^^ expected `u8`, found `u16`
|
||||||
|
|
|
|
||||||
= note: expected type `&u8`
|
= note: expected reference `&u8`
|
||||||
found type `&u16`
|
found reference `&u16`
|
||||||
|
|
||||||
For more information about this error, try `rustc --explain E0308`.
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user