]> git.lizzy.rs Git - rust.git/blob - tests/ui/serde.stderr
Merge pull request #2984 from flip1995/single_char_pattern
[rust.git] / tests / ui / serde.stderr
1 error: you should not implement `visit_string` without also implementing `visit_str`
2   --> $DIR/serde.rs:39:5
3    |
4 39 | /     fn visit_string<E>(self, _v: String) -> Result<Self::Value, E>
5 40 | |         where E: serde::de::Error,
6 41 | |     {
7 42 | |         unimplemented!()
8 43 | |     }
9    | |_____^
10    |
11    = note: `-D serde-api-misuse` implied by `-D warnings`
12
13 error: aborting due to previous error
14