]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/serde.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / serde.stderr
CommitLineData
f20569fa
XL
1error: you should not implement `visit_string` without also implementing `visit_str`
2 --> $DIR/serde.rs:39:5
3 |
4LL | / fn visit_string<E>(self, _v: String) -> Result<Self::Value, E>
5LL | | where
6LL | | E: serde::de::Error,
7LL | | {
8LL | | unimplemented!()
9LL | | }
10 | |_____^
11 |
12 = note: `-D clippy::serde-api-misuse` implied by `-D warnings`
13
14error: aborting due to previous error
15