Files
rust/tests/ui/lint/unused/concat-in-crate-deprecated-issue-137687.rs

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

7 lines
88 B
Rust
Raw Normal View History

//@ check-pass
#[deprecated = concat !()]
macro_rules! a {
() => {};
}
fn main() {}