summary refs log tree commit diff
path: root/src/test/ui/infinite/infinite-macro-expansion.stderr
blob: 7921669347589955f9c874cfcf6a2c019f4eada9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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