serde/test_suite/tests/ui/remote/wrong_de.stderr
2024-02-11 20:00:23 -08:00

15 lines
518 B
Plaintext

error[E0308]: mismatched types
--> tests/ui/remote/wrong_de.rs:7:10
|
7 | #[derive(Deserialize)]
| ^^^^^^^^^^^ expected `u16`, found `u8`
8 | #[serde(remote = "remote::S")]
| ----------- arguments to this struct are incorrect
|
note: tuple struct defined here
--> tests/ui/remote/wrong_de.rs:4:16
|
4 | pub struct S(pub u16);
| ^
= note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)