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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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() {
}