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