about summary refs log tree commit diff
path: root/tests/ui/resolve/inner-attr-prelude-macro.rs
blob: 1047c908ad11626fc1bbe4cd2a07ba55b2b4e3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ 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!();
}