blob: f91c6bedb2b2130b8b76049f0afe9bc7c957d4bc [file] [log] [blame]
#[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() {}