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

14 lines
267 B
Rust
Raw Normal View History

#[cfg_attr] //~ ERROR expected `(`, found `<eof>`
struct S1;
#[cfg_attr = ""] //~ ERROR expected `(`, found `=`
struct S2;
#[derive] //~ ERROR attribute must be of the form
struct S3;
#[derive = ""] //~ ERROR attribute must be of the form
struct S4;
fn main() {}