]> git.lizzy.rs Git - rust.git/blob - tests/ui/serde.rs
Merge pull request #3265 from mikerite/fix-export
[rust.git] / tests / ui / serde.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10
11 #![feature(tool_lints)]
12
13 #![warn(clippy::serde_api_misuse)]
14 #![allow(dead_code)]
15
16 extern crate serde;
17
18 struct A;
19
20 impl<'de> serde::de::Visitor<'de> for A {
21     type Value = ();
22
23     fn expecting(&self, _: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
24         unimplemented!()
25     }
26
27     fn visit_str<E>(self, _v: &str) -> Result<Self::Value, E>
28         where E: serde::de::Error,
29     {
30         unimplemented!()
31     }
32
33     fn visit_string<E>(self, _v: String) -> Result<Self::Value, E>
34         where E: serde::de::Error,
35     {
36         unimplemented!()
37     }
38 }
39
40 struct B;
41
42 impl<'de> serde::de::Visitor<'de> for B {
43     type Value = ();
44
45     fn expecting(&self, _: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
46         unimplemented!()
47     }
48
49     fn visit_string<E>(self, _v: String) -> Result<Self::Value, E>
50         where E: serde::de::Error,
51     {
52         unimplemented!()
53     }
54 }
55
56 fn main() {
57 }