blob: fb13bb064c7089117d9fc9d1a69b2d1b49884ad3 [file] [log] [blame]
// check-pass
// edition:2018
// aux-build:test-macros.rs
// Anonymize unstable non-dummy spans while still showing dummy spans `0..0`.
// normalize-stdout-test "bytes\([^0]\w*\.\.(\w+)\)" -> "bytes(LO..$1)"
// normalize-stdout-test "bytes\((\w+)\.\.[^0]\w*\)" -> "bytes($1..HI)"
#[macro_use]
extern crate test_macros;
type S = u8;
macro_rules! m {
() => {
print_bang! {
struct M($crate::S);
}
#[print_attr]
struct A($crate::S);
};
}
m!();
fn main() {}