]> git.lizzy.rs Git - rust.git/blob - src/test/ui/conditional-compilation/cfg-attr-parse.stderr
Add note to src/ci/docker/README.md about multiple docker images
[rust.git] / src / test / ui / conditional-compilation / cfg-attr-parse.stderr
1 error: expected identifier, found `)`
2   --> $DIR/cfg-attr-parse.rs:4:12
3    |
4 LL | #[cfg_attr()]
5    |            ^ expected identifier
6
7 error: expected `,`, found `)`
8   --> $DIR/cfg-attr-parse.rs:8:17
9    |
10 LL | #[cfg_attr(all())]
11    |                 ^ expected `,`
12
13 error: expected identifier, found `,`
14   --> $DIR/cfg-attr-parse.rs:16:18
15    |
16 LL | #[cfg_attr(all(),,)]
17    |                  ^ expected identifier
18
19 error: expected identifier, found `,`
20   --> $DIR/cfg-attr-parse.rs:28:28
21    |
22 LL | #[cfg_attr(all(), must_use,,)]
23    |                            ^ expected identifier
24
25 error: expected identifier, found `,`
26   --> $DIR/cfg-attr-parse.rs:40:40
27    |
28 LL | #[cfg_attr(all(), must_use, deprecated,,)]
29    |                                        ^ expected identifier
30
31 error: aborting due to 5 previous errors
32