summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-84973.stderr
blob: 55c89884a5f6ca56cd7dbfc545087738ae69d43f (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
error[E0277]: the trait bound `Fancy: SomeTrait` is not satisfied
  --> $DIR/issue-84973.rs:6:24
   |
LL |     let o = Other::new(f);
   |             ---------- ^ the trait `SomeTrait` is not implemented for `Fancy`
   |             |
   |             required by a bound introduced by this call
   |
note: required by a bound in `Other::<'a, G>::new`
  --> $DIR/issue-84973.rs:25:8
   |
LL |     G: SomeTrait,
   |        ^^^^^^^^^ required by this bound in `Other::<'a, G>::new`
LL | {
LL |     pub fn new(g: G) -> Self {
   |            --- required by a bound in this associated function
help: consider borrowing here
   |
LL |     let o = Other::new(&f);
   |                        +

error: aborting due to previous error

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