summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-21177.stderr
blob: 8b749edcc77f06e21addf7d53d48c89d2023763a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0391]: cycle detected when computing the bounds for type parameter `T`
  --> $DIR/issue-21177.rs:6:21
   |
LL | fn foo<T: Trait<A = T::B>>() { }
   |                     ^^^^
   |
   = note: ...which immediately requires computing the bounds for type parameter `T` again
note: cycle used when computing explicit predicates of `foo`
  --> $DIR/issue-21177.rs:6:21
   |
LL | fn foo<T: Trait<A = T::B>>() { }
   |                     ^^^^
   = note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information

error: aborting due to previous error

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