]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/deriving-show.rs
Auto merge of #23678 - richo:check-flightcheck, r=alexcrichton
[rust.git] / src / test / run-pass / deriving-show.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #[derive(Debug)]
12 struct Unit;
13
14 #[derive(Debug)]
15 struct Tuple(isize, usize);
16
17 #[derive(Debug)]
18 struct Struct { x: isize, y: usize }
19
20 #[derive(Debug)]
21 enum Enum {
22     Nullary,
23     Variant(isize, usize),
24     StructVariant { x: isize, y : usize }
25 }
26
27 macro_rules! t {
28     ($x:expr, $expected:expr) => {
29         assert_eq!(format!("{:?}", $x), $expected.to_string())
30     }
31 }
32
33 pub fn main() {
34     t!(Unit, "Unit");
35     t!(Tuple(1, 2), "Tuple(1, 2)");
36     t!(Struct { x: 1, y: 2 }, "Struct { x: 1, y: 2 }");
37     t!(Enum::Nullary, "Nullary");
38     t!(Enum::Variant(1, 2), "Variant(1, 2)");
39     t!(Enum::StructVariant { x: 1, y: 2 }, "StructVariant { x: 1, y: 2 }");
40 }