rust/tests/ui/recursion_limit/zero.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
288 B
Plaintext
Raw Normal View History

2019-12-13 04:18:21 +00:00
error: recursion limit reached while expanding `test!`
--> $DIR/zero.rs:10:1
|
LL | test!(test);
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^
2019-12-13 04:18:21 +00:00
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "2"]` attribute to your crate (`zero`)
2019-12-13 04:18:21 +00:00
error: aborting due to previous error