]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-unrestricted-attribute-tokens.stderr
Rollup merge of #53562 - varkor:bastion-of-the-turbofish, r=nagisa
[rust.git] / src / test / ui / feature-gates / feature-gate-unrestricted-attribute-tokens.stderr
1 error: expected one of `(`, `)`, `,`, `::`, or `=`, found `b`
2   --> $DIR/feature-gate-unrestricted-attribute-tokens.rs:13:13
3    |
4 LL | #[my_attr(a b c d)]
5    |             ^ expected one of `(`, `)`, `,`, `::`, or `=` here
6
7 error: expected one of `(`, `)`, `,`, `::`, or `=`, found `c`
8   --> $DIR/feature-gate-unrestricted-attribute-tokens.rs:13:15
9    |
10 LL | #[my_attr(a b c d)]
11    |               ^ expected one of `(`, `)`, `,`, `::`, or `=` here
12
13 error: expected one of `(`, `)`, `,`, `::`, or `=`, found `d`
14   --> $DIR/feature-gate-unrestricted-attribute-tokens.rs:13:17
15    |
16 LL | #[my_attr(a b c d)]
17    |                 ^ expected one of `(`, `)`, `,`, `::`, or `=` here
18
19 error: aborting due to 3 previous errors
20