summary refs log tree commit diff
path: root/src/test/ui/issue-6596-2.stderr
blob: f2ed17f35e697589747997f33ab0cab981ce8cac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: unknown macro variable `nonexistent`
  --> $DIR/issue-6596-2.rs:15:16
   |
LL |         { $inp $nonexistent }
   |                ^^^^^^^^^^^^ unknown macro variable
...
LL |     g!(foo);
   |     -------- in this macro invocation

error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `nonexistent`
  --> $DIR/issue-6596-2.rs:15:16
   |
LL |         { $inp $nonexistent }
   |                ^^^^^^^^^^^^ expected one of 8 possible tokens here
...
LL |     g!(foo);
   |     -------- in this macro invocation

error: aborting due to 2 previous errors