mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
674 B
Plaintext
15 lines
674 B
Plaintext
error: recursion limit reached while expanding `recurse!`
|
|
--> $DIR/recursion_limit_macro.rs:10:31
|
|
|
|
|
LL | ($t:tt $($tail:tt)*) => { recurse!($($tail)*) };
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
...
|
|
LL | recurse!(0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9);
|
|
| ------------------------------------------------- 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)
|
|
|
|
error: aborting due to 1 previous error
|
|
|