blob: 11cc645fa53561522fbe6e67bb68cdb80db5ea2b [file] [log] [blame]
#![feature(more_qualified_paths)]
macro_rules! show {
($ty:ty, $ex:expr) => {
match $ex {
<$ty>::A(_val) => println!("got a"), // formatting should not remove <$ty>::
<$ty>::B => println!("got b"),
}
};
}