]> git.lizzy.rs Git - rust.git/blob - tests/ui/serde.stderr
Update tests to new format of multiline errors
[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 | |
6 41 | |         where E: serde::de::Error,
7 42 | |     {
8 43 | |         unimplemented!()
9 44 | |     }
10    | |_____^
11    |
12 note: lint level defined here
13   --> $DIR/serde.rs:3:9
14    |
15 3  | #![deny(serde_api_misuse)]
16    |         ^^^^^^^^^^^^^^^^
17
18 error: aborting due to previous error
19