mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
11 lines
171 B
Rust
11 lines
171 B
Rust
//@ check-pass
|
|
|
|
macro_rules! null { ($i:tt) => {} }
|
|
macro_rules! apply_null {
|
|
($i:item) => { null! { $i } }
|
|
}
|
|
|
|
fn main() {
|
|
apply_null!(#[cfg(all())] fn f() {});
|
|
}
|