rust/tests/ui/proc-macro/derive-attr-cfg.rs

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

18 lines
203 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
// aux-build:derive-attr-cfg.rs
extern crate derive_attr_cfg;
use derive_attr_cfg::Foo;
#[derive(Foo)]
#[foo]
struct S {
#[cfg(any())]
x: i32
}
fn main() {
}