rust/tests/ui/rfcs/rfc-2091-track-caller/macro-declaration.rs

11 lines
136 B
Rust
Raw Normal View History

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