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

14 lines
449 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: recursion limit reached while expanding the macro `recursive`
--> $DIR/infinite-macro-expansion.rs:12:12
|
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