2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2015-01-20 17:45:07 -06:00
|
|
|
#[derive(Debug)]
|
2014-02-06 06:02:28 -06:00
|
|
|
struct Unit;
|
|
|
|
|
2015-01-20 17:45:07 -06:00
|
|
|
#[derive(Debug)]
|
2015-03-25 19:06:52 -05:00
|
|
|
struct Tuple(isize, usize);
|
2014-02-06 06:02:28 -06:00
|
|
|
|
2015-01-20 17:45:07 -06:00
|
|
|
#[derive(Debug)]
|
2015-03-25 19:06:52 -05:00
|
|
|
struct Struct { x: isize, y: usize }
|
2014-02-06 06:02:28 -06:00
|
|
|
|
2015-01-20 17:45:07 -06:00
|
|
|
#[derive(Debug)]
|
2014-02-06 06:02:28 -06:00
|
|
|
enum Enum {
|
|
|
|
Nullary,
|
2015-03-25 19:06:52 -05:00
|
|
|
Variant(isize, usize),
|
|
|
|
StructVariant { x: isize, y : usize }
|
2014-02-06 06:02:28 -06:00
|
|
|
}
|
|
|
|
|
2016-09-30 20:50:56 -05:00
|
|
|
#[derive(Debug)]
|
2019-05-28 13:47:21 -05:00
|
|
|
struct Pointers(*const dyn Send, *mut dyn Sync);
|
2016-09-30 20:50:56 -05:00
|
|
|
|
2014-02-06 06:02:28 -06:00
|
|
|
macro_rules! t {
|
|
|
|
($x:expr, $expected:expr) => {
|
2014-12-20 02:09:35 -06:00
|
|
|
assert_eq!(format!("{:?}", $x), $expected.to_string())
|
2014-02-06 06:02:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
t!(Unit, "Unit");
|
2015-01-20 17:45:07 -06:00
|
|
|
t!(Tuple(1, 2), "Tuple(1, 2)");
|
|
|
|
t!(Struct { x: 1, y: 2 }, "Struct { x: 1, y: 2 }");
|
2014-11-06 02:05:53 -06:00
|
|
|
t!(Enum::Nullary, "Nullary");
|
2015-01-20 17:45:07 -06:00
|
|
|
t!(Enum::Variant(1, 2), "Variant(1, 2)");
|
|
|
|
t!(Enum::StructVariant { x: 1, y: 2 }, "StructVariant { x: 1, y: 2 }");
|
2014-02-06 06:02:28 -06:00
|
|
|
}
|