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