]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deriving/deriving-show-2.rs
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / deriving / deriving-show-2.rs
1 // run-pass
2 #![allow(dead_code)]
3 use std::fmt;
4
5 #[derive(Debug)]
6 enum A {}
7 #[derive(Debug)]
8 enum B { B1, B2, B3 }
9 #[derive(Debug)]
10 enum C { C1(isize), C2(B), C3(String) }
11 #[derive(Debug)]
12 enum D { D1{ a: isize } }
13 #[derive(Debug)]
14 struct E;
15 #[derive(Debug)]
16 struct F(isize);
17 #[derive(Debug)]
18 struct G(isize, isize);
19 #[derive(Debug)]
20 struct H { a: isize }
21 #[derive(Debug)]
22 struct I { a: isize, b: isize }
23 #[derive(Debug)]
24 struct J(Custom);
25
26 struct Custom;
27 impl fmt::Debug for Custom {
28     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
29         write!(f, "yay")
30     }
31 }
32
33 trait ToDebug {
34     fn to_show(&self) -> String;
35 }
36
37 impl<T: fmt::Debug> ToDebug for T {
38     fn to_show(&self) -> String {
39         format!("{:?}", self)
40     }
41 }
42
43 pub fn main() {
44     assert_eq!(B::B1.to_show(), "B1".to_string());
45     assert_eq!(B::B2.to_show(), "B2".to_string());
46     assert_eq!(C::C1(3).to_show(), "C1(3)".to_string());
47     assert_eq!(C::C2(B::B2).to_show(), "C2(B2)".to_string());
48     assert_eq!(D::D1{ a: 2 }.to_show(), "D1 { a: 2 }".to_string());
49     assert_eq!(E.to_show(), "E".to_string());
50     assert_eq!(F(3).to_show(), "F(3)".to_string());
51     assert_eq!(G(3, 4).to_show(), "G(3, 4)".to_string());
52     assert_eq!(I{ a: 2, b: 4 }.to_show(), "I { a: 2, b: 4 }".to_string());
53     assert_eq!(J(Custom).to_show(), "J(yay)".to_string());
54 }