@@ -319,22 +319,39 @@ LL | unknown_metavar!(a);
319
319
|
320
320
= note: this error originates in the macro `unknown_metavar` (in Nightly builds, run with -Z macro-backtrace for more info)
321
321
322
- error[E0425]: cannot find function `count ` in this scope
323
- --> $DIR/syntax-errors.rs:29:30
322
+ error[E0425]: cannot find value `i ` in this scope
323
+ --> $DIR/syntax-errors.rs:29:36
324
324
|
325
325
LL | ( $( $i:ident ),* ) => { count(i) };
326
- | ^^^^ ^ not found in this scope
326
+ | ^ not found in this scope
327
327
...
328
328
LL | no_curly__no_rhs_dollar__round!(a, b, c);
329
329
| ---------------------------------------- in this macro invocation
330
330
|
331
331
= note: this error originates in the macro `no_curly__no_rhs_dollar__round` (in Nightly builds, run with -Z macro-backtrace for more info)
332
332
333
333
error[E0425]: cannot find value `i` in this scope
334
- --> $DIR/syntax-errors.rs:29:36
334
+ --> $DIR/syntax-errors.rs:35:29
335
+ |
336
+ LL | ( $i:ident ) => { count(i) };
337
+ | ^ not found in this scope
338
+ ...
339
+ LL | no_curly__no_rhs_dollar__no_round!(a);
340
+ | ------------------------------------- in this macro invocation
341
+ |
342
+ = note: this error originates in the macro `no_curly__no_rhs_dollar__no_round` (in Nightly builds, run with -Z macro-backtrace for more info)
343
+
344
+ error[E0425]: cannot find value `a` in this scope
345
+ --> $DIR/syntax-errors.rs:153:37
346
+ |
347
+ LL | no_curly__rhs_dollar__no_round!(a);
348
+ | ^ not found in this scope
349
+
350
+ error[E0425]: cannot find function `count` in this scope
351
+ --> $DIR/syntax-errors.rs:29:30
335
352
|
336
353
LL | ( $( $i:ident ),* ) => { count(i) };
337
- | ^ not found in this scope
354
+ | ^^^^ ^ not found in this scope
338
355
...
339
356
LL | no_curly__no_rhs_dollar__round!(a, b, c);
340
357
| ---------------------------------------- in this macro invocation
@@ -352,17 +369,6 @@ LL | no_curly__no_rhs_dollar__no_round!(a);
352
369
|
353
370
= note: this error originates in the macro `no_curly__no_rhs_dollar__no_round` (in Nightly builds, run with -Z macro-backtrace for more info)
354
371
355
- error[E0425]: cannot find value `i` in this scope
356
- --> $DIR/syntax-errors.rs:35:29
357
- |
358
- LL | ( $i:ident ) => { count(i) };
359
- | ^ not found in this scope
360
- ...
361
- LL | no_curly__no_rhs_dollar__no_round!(a);
362
- | ------------------------------------- in this macro invocation
363
- |
364
- = note: this error originates in the macro `no_curly__no_rhs_dollar__no_round` (in Nightly builds, run with -Z macro-backtrace for more info)
365
-
366
372
error[E0425]: cannot find function `count` in this scope
367
373
--> $DIR/syntax-errors.rs:46:23
368
374
|
@@ -374,12 +380,6 @@ LL | no_curly__rhs_dollar__no_round!(a);
374
380
|
375
381
= note: this error originates in the macro `no_curly__rhs_dollar__no_round` (in Nightly builds, run with -Z macro-backtrace for more info)
376
382
377
- error[E0425]: cannot find value `a` in this scope
378
- --> $DIR/syntax-errors.rs:153:37
379
- |
380
- LL | no_curly__rhs_dollar__no_round!(a);
381
- | ^ not found in this scope
382
-
383
383
error: aborting due to 40 previous errors
384
384
385
385
For more information about this error, try `rustc --explain E0425`.
0 commit comments