rust/src/test/ui/malformed/malformed-special-attrs.rs

14 lines
268 B
Rust
Raw Normal View History

#[cfg_attr] //~ ERROR malformed `cfg_attr` attribute
struct S1;
#[cfg_attr = ""] //~ ERROR expected `(`, found `=`
struct S2;
#[derive] //~ ERROR malformed `derive` attribute
struct S3;
#[derive = ""] //~ ERROR malformed `derive` attribute
struct S4;
fn main() {}