|
1 | 1 | error: `#[eii_macro_for(...)]` is only valid on macros
|
2 | 2 | --> $DIR/errors.rs:7:1
|
3 | 3 | |
|
4 |
| -LL | #[core::eii_macro_for(bar)] |
5 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 4 | +LL | #[eii_macro_for(bar)] |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^ |
6 | 6 |
|
7 | 7 | error: `#[eii_macro_for(...)]` is only valid on macros
|
8 | 8 | --> $DIR/errors.rs:9:5
|
9 | 9 | |
|
10 |
| -LL | #[core::eii_macro_for(bar)] |
11 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 10 | +LL | #[eii_macro_for(bar)] |
| 11 | + | ^^^^^^^^^^^^^^^^^^^^^ |
12 | 12 |
|
13 | 13 | error: `#[eii_macro_for(...)]` expects a list of one or two elements
|
14 | 14 | --> $DIR/errors.rs:13:1
|
15 | 15 | |
|
16 |
| -LL | #[core::eii_macro_for] |
17 |
| - | ^^^^^^^^^^^^^^^^^^^^^^ |
| 16 | +LL | #[eii_macro_for] |
| 17 | + | ^^^^^^^^^^^^^^^^ |
18 | 18 |
|
19 | 19 | error: `#[eii_macro_for(...)]` expects a list of one or two elements
|
20 | 20 | --> $DIR/errors.rs:14:1
|
21 | 21 | |
|
22 |
| -LL | #[core::eii_macro_for()] |
23 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 22 | +LL | #[eii_macro_for()] |
| 23 | + | ^^^^^^^^^^^^^^^^^^ |
24 | 24 |
|
25 | 25 | error: expected this argument to be "unsafe".
|
26 |
| - --> $DIR/errors.rs:15:28 |
| 26 | + --> $DIR/errors.rs:15:22 |
27 | 27 | |
|
28 |
| -LL | #[core::eii_macro_for(bar, hello)] |
29 |
| - | ^^^^^ |
| 28 | +LL | #[eii_macro_for(bar, hello)] |
| 29 | + | ^^^^^ |
30 | 30 | |
|
31 | 31 | note: the second argument is optional
|
32 |
| - --> $DIR/errors.rs:15:28 |
| 32 | + --> $DIR/errors.rs:15:22 |
33 | 33 | |
|
34 |
| -LL | #[core::eii_macro_for(bar, hello)] |
35 |
| - | ^^^^^ |
| 34 | +LL | #[eii_macro_for(bar, hello)] |
| 35 | + | ^^^^^ |
36 | 36 |
|
37 | 37 | error: `#[eii_macro_for(...)]` expects a list of one or two elements
|
38 | 38 | --> $DIR/errors.rs:16:1
|
39 | 39 | |
|
40 |
| -LL | #[core::eii_macro_for(bar, "unsafe", hello)] |
41 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 40 | +LL | #[eii_macro_for(bar, "unsafe", hello)] |
| 41 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
42 | 42 |
|
43 | 43 | error: `#[eii_macro_for(...)]` expects a list of one or two elements
|
44 | 44 | --> $DIR/errors.rs:17:1
|
45 | 45 | |
|
46 |
| -LL | #[core::eii_macro_for(bar, hello, "unsafe")] |
47 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 46 | +LL | #[eii_macro_for(bar, hello, "unsafe")] |
| 47 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
48 | 48 |
|
49 | 49 | error: `#[eii_macro_for(...)]` expects a list of one or two elements
|
50 | 50 | --> $DIR/errors.rs:18:1
|
51 | 51 | |
|
52 |
| -LL | #[core::eii_macro_for = "unsafe"] |
53 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 52 | +LL | #[eii_macro_for = "unsafe"] |
| 53 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
54 | 54 |
|
55 | 55 | error: `#[foo]` is only valid on functions
|
56 | 56 | --> $DIR/errors.rs:27:1
|
|
0 commit comments