2018-09-10 17:06:49 -05:00
|
|
|
error: expected identifier, found `)`
|
2019-01-04 11:33:36 -06:00
|
|
|
--> $DIR/cfg-attr-parse.rs:4:12
|
2018-09-10 17:06:49 -05:00
|
|
|
|
|
|
|
|
LL | #[cfg_attr()] //~ error: expected identifier, found `)`
|
|
|
|
| ^ expected identifier
|
|
|
|
|
|
|
|
error: expected `,`, found `)`
|
2019-01-04 11:33:36 -06:00
|
|
|
--> $DIR/cfg-attr-parse.rs:8:17
|
2018-09-10 17:06:49 -05:00
|
|
|
|
|
|
|
|
LL | #[cfg_attr(all())] //~ error: expected `,`, found `)`
|
|
|
|
| ^ expected `,`
|
|
|
|
|
|
|
|
error: expected identifier, found `,`
|
2019-01-04 11:33:36 -06:00
|
|
|
--> $DIR/cfg-attr-parse.rs:16:18
|
2018-09-10 17:06:49 -05:00
|
|
|
|
|
|
|
|
LL | #[cfg_attr(all(),,)] //~ ERROR expected identifier
|
|
|
|
| ^ expected identifier
|
|
|
|
|
|
|
|
error: expected identifier, found `,`
|
2019-01-04 11:33:36 -06:00
|
|
|
--> $DIR/cfg-attr-parse.rs:28:28
|
2018-09-10 17:06:49 -05:00
|
|
|
|
|
|
|
|
LL | #[cfg_attr(all(), must_use,,)] //~ ERROR expected identifier
|
|
|
|
| ^ expected identifier
|
|
|
|
|
|
|
|
error: expected identifier, found `,`
|
2019-01-04 11:33:36 -06:00
|
|
|
--> $DIR/cfg-attr-parse.rs:40:40
|
2018-09-10 17:06:49 -05:00
|
|
|
|
|
|
|
|
LL | #[cfg_attr(all(), must_use, deprecated,,)] //~ ERROR expected identifier
|
|
|
|
| ^ expected identifier
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|