rust/src/test/ui/issues/issue-23122-2.stderr

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

12 lines
466 B
Plaintext
Raw Normal View History

2022-08-19 09:08:59 -05:00
error[E0275]: overflow evaluating the requirement `<T as Next>::Next`
2022-02-09 04:19:31 -06:00
--> $DIR/issue-23122-2.rs:10:17
2019-02-23 16:25:30 -06:00
|
LL | type Next = <GetNext<T::Next> as Next>::Next;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-02-23 16:25:30 -06:00
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_23122_2`)
2019-02-23 16:25:30 -06:00
error: aborting due to previous error
2018-07-15 16:11:54 -05:00
For more information about this error, try `rustc --explain E0275`.