summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/issue-91949-hangs-on-recursion.stderr
blob: 144990d50f00088ebded469495593bb234b4ca28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
warning: function cannot return without recursing
  --> $DIR/issue-91949-hangs-on-recursion.rs:23:1
   |
LL | / fn recurse<T>(elements: T) -> Vec<char>
LL | | where
LL | |     T: Iterator<Item = ()>,
   | |___________________________^ cannot return without recursing
LL |   {
LL |       recurse(IteratorOfWrapped(elements).map(|t| t.0))
   |       ------------------------------------------------- recursive call site
   |
   = help: a `loop` may express intention better if this is on purpose
   = note: `#[warn(unconditional_recursion)]` on by default

error[E0275]: overflow evaluating the requirement `<std::iter::Empty<()> as Iterator>::Item == ()`
   |
   = help: consider increasing the recursion limit by adding a `#![recursion_limit = "512"]` attribute to your crate (`issue_91949_hangs_on_recursion`)
note: required for `IteratorOfWrapped<(), std::iter::Empty<()>>` to implement `Iterator`
  --> $DIR/issue-91949-hangs-on-recursion.rs:16:32
   |
LL | impl<T, I: Iterator<Item = T>> Iterator for IteratorOfWrapped<T, I> {
   |                     --------   ^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^^
   |                     |
   |                     unsatisfied trait bound introduced here
   = note: 256 redundant requirements hidden
   = note: required for `IteratorOfWrapped<(), Map<IteratorOfWrapped<(), Map<IteratorOfWrapped<(), Map<..., ...>>, ...>>, ...>>` to implement `Iterator`
   = note: the full type name has been written to '$TEST_BUILD_DIR/traits/issue-91949-hangs-on-recursion/issue-91949-hangs-on-recursion.long-type-hash.txt'

error: aborting due to previous error; 1 warning emitted

For more information about this error, try `rustc --explain E0275`.