2019-05-21 17:47:23 -07:00
|
|
|
#[cfg_attr] //~ ERROR malformed `cfg_attr` attribute
|
2019-01-02 02:21:05 +03:00
|
|
|
struct S1;
|
|
|
|
|
2019-12-05 06:45:50 +01:00
|
|
|
#[cfg_attr = ""] //~ ERROR malformed `cfg_attr` attribute
|
2019-01-02 02:21:05 +03:00
|
|
|
struct S2;
|
|
|
|
|
2019-05-21 17:47:23 -07:00
|
|
|
#[derive] //~ ERROR malformed `derive` attribute
|
2019-01-02 02:21:05 +03:00
|
|
|
struct S3;
|
|
|
|
|
2019-05-21 17:47:23 -07:00
|
|
|
#[derive = ""] //~ ERROR malformed `derive` attribute
|
2019-01-02 02:21:05 +03:00
|
|
|
struct S4;
|
|
|
|
|
|
|
|
fn main() {}
|