rust/tests/ui/rfc-2091-track-caller/macro-declaration.rs
2023-01-11 09:32:08 +00:00

11 lines
136 B
Rust

// check-pass
// See https://github.com/rust-lang/rust/issues/95151
#[track_caller]
macro_rules! _foo {
() => {};
}
fn main() {
}