rust/tests/ui/rfcs/rfc-2091-track-caller/macro-declaration.rs
2023-06-05 16:09:46 +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() {
}