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