2020-01-20 23:02:01 +00:00
|
|
|
error: recursion limit reached while expanding `recurse!`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/recursion_limit_macro.rs:10:31
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | ($t:tt $($tail:tt)*) => { recurse!($($tail)*) };
|
2017-01-05 23:17:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
...
|
2018-02-23 00:42:32 +00: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 18:28:28 +00:00
|
|
|
| ------------------------------------------------- in this macro invocation
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
2021-09-28 20:16:42 +00:00
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]` attribute to your crate (`recursion_limit_macro`)
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `recurse` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2017-01-05 23:17:12 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-03-15 15:13:47 +00:00
|
|
|
|