2017-01-05 17:17:12 -06:00
|
|
|
error: recursion limit reached while expanding the macro `recurse`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/recursion_limit_macro.rs:10:31
|
2017-01-05 17:17:12 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | ($t:tt $($tail:tt)*) => { recurse!($($tail)*) }; //~ ERROR recursion limit
|
2017-01-05 17:17:12 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
...
|
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);
|
2017-01-05 17:17:12 -06:00
|
|
|
| -------------------------------------------------- in this macro invocation
|
|
|
|
|
|
2017-02-28 12:18:54 -06:00
|
|
|
= help: consider adding a `#![recursion_limit="20"]` attribute to your crate
|
2017-01-05 17:17:12 -06:00
|
|
|
|
2018-03-15 10:13:47 -05:00
|
|
|
error: aborting due to previous error
|
|
|
|
|