@@ -313,21 +313,6 @@ LL | unknown_metavar!(a);
313
313
|
314
314
= note: this error originates in the macro `unknown_metavar` (in Nightly builds, run with -Z macro-backtrace for more info)
315
315
316
- error[E0425]: cannot find function `count` in this scope
317
- --> $DIR/syntax-errors.rs:23:30
318
- |
319
- LL | ( $( $i:ident ),* ) => { count(i) };
320
- | ^^^^^ not found in this scope
321
- ...
322
- LL | no_curly__no_rhs_dollar__round!(a, b, c);
323
- | ---------------------------------------- in this macro invocation
324
- |
325
- = note: this error originates in the macro `no_curly__no_rhs_dollar__round` (in Nightly builds, run with -Z macro-backtrace for more info)
326
- help: consider importing this associated function
327
- |
328
- LL + use std::iter::Iterator::count;
329
- |
330
-
331
316
error[E0425]: cannot find value `i` in this scope
332
317
--> $DIR/syntax-errors.rs:23:36
333
318
|
@@ -339,26 +324,39 @@ LL | no_curly__no_rhs_dollar__round!(a, b, c);
339
324
|
340
325
= note: this error originates in the macro `no_curly__no_rhs_dollar__round` (in Nightly builds, run with -Z macro-backtrace for more info)
341
326
342
- error[E0425]: cannot find function `count ` in this scope
343
- --> $DIR/syntax-errors.rs:30:23
327
+ error[E0425]: cannot find value `i ` in this scope
328
+ --> $DIR/syntax-errors.rs:30:29
344
329
|
345
330
LL | ( $i:ident ) => { count(i) };
346
- | ^^^^ ^ not found in this scope
331
+ | ^ not found in this scope
347
332
...
348
333
LL | no_curly__no_rhs_dollar__no_round!(a);
349
334
| ------------------------------------- in this macro invocation
350
335
|
351
336
= 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)
352
- help: consider importing this associated function
337
+
338
+ error[E0425]: cannot find value `a` in this scope
339
+ --> $DIR/syntax-errors.rs:152:37
340
+ |
341
+ LL | no_curly__rhs_dollar__no_round!(a);
342
+ | ^ not found in this scope
343
+
344
+ error[E0425]: cannot find function `count` in this scope
345
+ --> $DIR/syntax-errors.rs:23:30
353
346
|
354
- LL + use std::iter::Iterator::count;
347
+ LL | ( $( $i:ident ),* ) => { count(i) };
348
+ | ^^^^^ not found in this scope
349
+ ...
350
+ LL | no_curly__no_rhs_dollar__round!(a, b, c);
351
+ | ---------------------------------------- in this macro invocation
355
352
|
353
+ = note: this error originates in the macro `no_curly__no_rhs_dollar__round` (in Nightly builds, run with -Z macro-backtrace for more info)
356
354
357
- error[E0425]: cannot find value `i ` in this scope
358
- --> $DIR/syntax-errors.rs:30:29
355
+ error[E0425]: cannot find function `count ` in this scope
356
+ --> $DIR/syntax-errors.rs:30:23
359
357
|
360
358
LL | ( $i:ident ) => { count(i) };
361
- | ^ not found in this scope
359
+ | ^^^^ ^ not found in this scope
362
360
...
363
361
LL | no_curly__no_rhs_dollar__no_round!(a);
364
362
| ------------------------------------- in this macro invocation
@@ -375,16 +373,6 @@ LL | no_curly__rhs_dollar__no_round!(a);
375
373
| ---------------------------------- in this macro invocation
376
374
|
377
375
= note: this error originates in the macro `no_curly__rhs_dollar__no_round` (in Nightly builds, run with -Z macro-backtrace for more info)
378
- help: consider importing this associated function
379
- |
380
- LL + use std::iter::Iterator::count;
381
- |
382
-
383
- error[E0425]: cannot find value `a` in this scope
384
- --> $DIR/syntax-errors.rs:152:37
385
- |
386
- LL | no_curly__rhs_dollar__no_round!(a);
387
- | ^ not found in this scope
388
376
389
377
error: aborting due to 39 previous errors
390
378
0 commit comments