rust/tests/ui/did_you_mean/recursion_limit_macro.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
672 B
Plaintext
Raw Normal View History

error: recursion limit reached while expanding `recurse!`
2018-12-25 09:56:47 -06:00
--> $DIR/recursion_limit_macro.rs:10:31
|
2019-03-09 06:03:44 -06:00
LL | ($t:tt $($tail:tt)*) => { recurse!($($tail)*) };
| ^^^^^^^^^^^^^^^^^^^
...
2018-02-22 18:42:32 -06:00
LL | recurse!(0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9);
2021-10-14 13:28:28 -05:00
| ------------------------------------------------- in this macro invocation
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]` attribute to your crate (`recursion_limit_macro`)
= note: this error originates in the macro `recurse` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-03-15 10:13:47 -05:00
error: aborting due to previous error