a5138b34d5
fixes 5005 This was very similar to 4964 and the fix was to extract and pass along the qself of the ``PatKind::TupleStruct``
10 lines
253 B
Rust
10 lines
253 B
Rust
#![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"),
|
|
}
|
|
};
|
|
}
|