rust/tests/ui/serde.stderr

16 lines
424 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-12-10 06:27:19 +01:00
--> $DIR/serde.rs:48:5
2017-08-01 17:54:21 +02:00
|
2018-12-10 06:27:19 +01:00
48 | / fn visit_string<E>(self, _v: String) -> Result<Self::Value, E>
49 | | where
50 | | E: serde::de::Error,
2018-10-06 18:18:06 +02:00
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