]> git.proxmox.com Git - rustc.git/blob - tests/ui/traits/new-solver/recursive-self-normalization-2.stderr
139b0a456801889f10f27849196fd9d900fe1d1a
[rustc.git] / tests / ui / traits / new-solver / recursive-self-normalization-2.stderr
1 error[E0275]: overflow evaluating the requirement `<T as Foo1>::Assoc1: Bar`
2 --> $DIR/recursive-self-normalization-2.rs:15:5
3 |
4 LL | needs_bar::<T::Assoc1>();
5 | ^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`recursive_self_normalization_2`)
8 note: required by a bound in `needs_bar`
9 --> $DIR/recursive-self-normalization-2.rs:12:17
10 |
11 LL | fn needs_bar<S: Bar>() {}
12 | ^^^ required by this bound in `needs_bar`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0275`.