about summary refs log tree commit diff
path: root/tests/ui/macros/expand-full-no-resolution.stderr
blob: b836ac51ad9e0ab1871114fee26342358396c8a0 (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
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