summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/correct-binder-for-arbitrary-bound-sugg.stderr
blob: 2298e7f4e0c3c898fe18120360b467de5c95aa7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error[E0277]: the trait bound `for<'a> &'a T: Bar` is not satisfied
  --> $DIR/correct-binder-for-arbitrary-bound-sugg.rs:13:11
   |
LL | fn foo<T: Foo>() {}
   |           ^^^ the trait `for<'a> Bar` is not implemented for `&'a T`
   |
note: required by a bound in `Foo`
  --> $DIR/correct-binder-for-arbitrary-bound-sugg.rs:3:23
   |
LL | trait Foo
   |       --- required by a bound in this trait
LL | where
LL |     for<'a> &'a Self: Bar,
   |                       ^^^ required by this bound in `Foo`
help: consider introducing a `where` clause, but there might be an alternative better way to express this requirement
   |
LL | fn foo<T: Foo>() where for<'a> &'a T: Bar {}
   |                  ++++++++++++++++++++++++

error: aborting due to previous error

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