blob: e94a5fe96ffcd581d268f020931217d9ed5c8529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
error: expected identifier, found reserved identifier `$crate`
--> $DIR/dollar-crate-is-keyword.rs:6:20
|
LL | struct $crate {} //~ ERROR expected identifier, found reserved identifier `$crate`
| ^^^^^^ expected identifier, found reserved identifier
...
LL | m!();
| ----- in this macro invocation
error: expected identifier, found reserved identifier `$crate`
--> $DIR/dollar-crate-is-keyword.rs:11:23
|
LL | use $crate as $crate; //~ ERROR expected identifier, found reserved identifier `$crate`
| ^^^^^^ expected identifier, found reserved identifier
...
LL | m!();
| ----- in this macro invocation
warning: `$crate` may not be imported
--> $DIR/dollar-crate-is-keyword.rs:9:9
|
LL | use $crate; // OK
| ^^^^^^^^^^^
...
LL | m!();
| ----- in this macro invocation
|
= note: `use $crate;` was erroneously allowed and will become a hard error in a future release
warning: `$crate` may not be imported
--> $DIR/dollar-crate-is-keyword.rs:11:9
|
LL | use $crate as $crate; //~ ERROR expected identifier, found reserved identifier `$crate`
| ^^^^^^^^^^^^^^^^^^^^^
...
LL | m!();
| ----- in this macro invocation
|
= note: `use $crate;` was erroneously allowed and will become a hard error in a future release
error: aborting due to 2 previous errors
|