2018-07-15 16:11:54 -05:00
|
|
|
error: recursion limit reached while expanding the macro `prob1`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-16098.rs:7:18
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | $n + prob1!($n - 1); //~ ERROR recursion limit reached while expanding the macro `prob1`
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
...
|
|
|
|
LL | println!("Problem 1: {}", prob1!(1000));
|
|
|
|
| ------------ in this macro invocation
|
|
|
|
|
|
|
|
|
= help: consider adding a `#![recursion_limit="128"]` attribute to your crate
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|