blob: b836ac51ad9e0ab1871114fee26342358396c8a0 [file] [log] [blame]
error: cannot find macro `a` in this scope
--> $DIR/expand-full-no-resolution.rs:18:18
|
LL | macro_rules! _a {
| --------------- similarly named macro `_a` defined here
...
LL | format_args!(a!());
| ^
|
help: the leading underscore in `_a` marks it as unused, consider renaming it to `a`
|
LL - macro_rules! _a {
LL + macro_rules! a {
|
error: cannot find macro `a` in this scope
--> $DIR/expand-full-no-resolution.rs:19:10
|
LL | macro_rules! _a {
| --------------- similarly named macro `_a` defined here
...
LL | env!(a!());
| ^
|
help: the leading underscore in `_a` marks it as unused, consider renaming it to `a`
|
LL - macro_rules! _a {
LL + macro_rules! a {
|
error: aborting due to 2 previous errors