]> git.lizzy.rs Git - rust.git/blob - tests/ui/serde.stderr
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / serde.stderr
1 error: you should not implement `visit_string` without also implementing `visit_str`
2   --> $DIR/serde.rs:48:5
3    |
4 48 | /     fn visit_string<E>(self, _v: String) -> Result<Self::Value, E>
5 49 | |     where
6 50 | |         E: serde::de::Error,
7 51 | |     {
8 52 | |         unimplemented!()
9 53 | |     }
10    | |_____^
11    |
12    = note: `-D clippy::serde-api-misuse` implied by `-D warnings`
13
14 error: aborting due to previous error
15