rust/tests/ui/serde.stderr

15 lines
413 B
Plaintext
Raw Normal View History

2017-08-01 17:54:21 +02:00
error: you should not implement `visit_string` without also implementing `visit_str`
2018-10-06 18:18:06 +02:00
--> $DIR/serde.rs:49:5
2017-08-01 17:54:21 +02:00
|
2018-10-06 18:18:06 +02:00
49 | / fn visit_string<E>(self, _v: String) -> Result<Self::Value, E>
50 | | where E: serde::de::Error,
51 | | {
52 | | unimplemented!()
53 | | }
2017-08-01 17:54:21 +02:00
| |_____^
|
= note: `-D clippy::serde-api-misuse` implied by `-D warnings`
2017-08-01 17:54:21 +02:00
2018-01-16 17:06:27 +01:00
error: aborting due to previous error