@@ -313,21 +313,6 @@ LL | unknown_metavar!(a);
313313 |
314314 = note: this error originates in the macro `unknown_metavar` (in Nightly builds, run with -Z macro-backtrace for more info)
315315
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-
331316error[E0425]: cannot find value `i` in this scope
332317 --> $DIR/syntax-errors.rs:23:36
333318 |
@@ -339,26 +324,39 @@ LL | no_curly__no_rhs_dollar__round!(a, b, c);
339324 |
340325 = note: this error originates in the macro `no_curly__no_rhs_dollar__round` (in Nightly builds, run with -Z macro-backtrace for more info)
341326
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
344329 |
345330LL | ( $i:ident ) => { count(i) };
346- | ^^^^ ^ not found in this scope
331+ | ^ not found in this scope
347332...
348333LL | no_curly__no_rhs_dollar__no_round!(a);
349334 | ------------------------------------- in this macro invocation
350335 |
351336 = 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
353346 |
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
355352 |
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)
356354
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
359357 |
360358LL | ( $i:ident ) => { count(i) };
361- | ^ not found in this scope
359+ | ^^^^ ^ not found in this scope
362360...
363361LL | no_curly__no_rhs_dollar__no_round!(a);
364362 | ------------------------------------- in this macro invocation
@@ -375,16 +373,6 @@ LL | no_curly__rhs_dollar__no_round!(a);
375373 | ---------------------------------- in this macro invocation
376374 |
377375 = 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
388376
389377error: aborting due to 39 previous errors
390378
0 commit comments