]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/deriving-show.rs
debuginfo: Make debuginfo source location assignment more stable (Pt. 1)
[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(Show)]
12 struct Unit;
13
14 #[derive(Show)]
15 struct Tuple(int, uint);
16
17 #[derive(Show)]
18 struct Struct { x: int, y: uint }
19
20 #[derive(Show)]
21 enum Enum {
22     Nullary,
23     Variant(int, uint),
24     StructVariant { x: int, y : uint }
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(1i, 2u)");
36     t!(Struct { x: 1, y: 2 }, "Struct { x: 1i, y: 2u }");
37     t!(Enum::Nullary, "Nullary");
38     t!(Enum::Variant(1, 2), "Variant(1i, 2u)");
39     t!(Enum::StructVariant { x: 1, y: 2 }, "StructVariant { x: 1i, y: 2u }");
40 }