summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2091-track-caller/macro-declaration.rs
blob: 6ca09fac819d8b7a3225c9bd6205f0c7597a2148 (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass

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

fn main() {
}