rust/src/test/ui/infinite/infinite-macro-expansion.stderr

14 lines
448 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: recursion limit reached while expanding the macro `recursive`
2018-12-25 09:56:47 -06:00
--> $DIR/infinite-macro-expansion.rs:2:12
2018-08-08 07:28:26 -05:00
|
LL | () => (recursive!()) //~ ERROR recursion limit reached while expanding the macro `recursive`
| ^^^^^^^^^^^^
...
LL | recursive!()
| ------------ in this macro invocation
|
= help: consider adding a `#![recursion_limit="128"]` attribute to your crate
error: aborting due to previous error