mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
12 lines
248 B
Rust
12 lines
248 B
Rust
//@ 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!();
|
|
}
|