Files
rust/tests/ui/resolve/inner-attr-prelude-macro.rs

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

12 lines
248 B
Rust
Raw Normal View History

//@ check-pass
//! This test checks that macro names resolved from the libstd prelude
//! still work even if there's a crate-level custom inner attribute.
#![feature(custom_inner_attributes)]
#![rustfmt::skip]
fn main() {
let _ = todo!();
}