mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
23 lines
361 B
Rust
23 lines
361 B
Rust
//@ check-pass
|
|
|
|
#![allow(unexpected_cfgs)] // since we different cfgs
|
|
|
|
macro_rules! mac {
|
|
{} => {
|
|
#[cfg(attr)]
|
|
mod m {
|
|
#[lang_item]
|
|
fn f() {}
|
|
|
|
#[cfg_attr(target_thread_local, custom)]
|
|
fn g() {}
|
|
}
|
|
|
|
#[cfg(attr)]
|
|
unconfigured_invocation!();
|
|
}
|
|
}
|
|
|
|
mac! {}
|
|
|
|
fn main() {}
|