2021-05-16 14:20:35 +00:00
|
|
|
error[E0277]: the trait bound `Fancy: SomeTrait` is not satisfied
|
2022-08-16 23:13:23 +00:00
|
|
|
--> $DIR/issue-84973.rs:6:24
|
2021-05-16 14:20:35 +00:00
|
|
|
|
|
|
|
|
LL | let o = Other::new(f);
|
2022-08-18 12:16:35 +00:00
|
|
|
| ---------- ^ the trait `SomeTrait` is not implemented for `Fancy`
|
2022-08-16 23:13:23 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2021-07-17 18:13:50 +00:00
|
|
|
|
|
2021-10-05 23:04:09 +00:00
|
|
|
note: required by a bound in `Other::<'a, G>::new`
|
|
|
|
--> $DIR/issue-84973.rs:25:8
|
2021-07-17 18:13:50 +00:00
|
|
|
|
|
2021-10-05 23:04:09 +00:00
|
|
|
LL | G: SomeTrait,
|
|
|
|
| ^^^^^^^^^ required by this bound in `Other::<'a, G>::new`
|
|
|
|
LL | {
|
2021-05-16 14:20:35 +00:00
|
|
|
LL | pub fn new(g: G) -> Self {
|
2023-02-21 05:21:07 +00:00
|
|
|
| --- required by a bound in this associated function
|
2022-08-16 23:13:23 +00:00
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
LL | let o = Other::new(&f);
|
|
|
|
| +
|
2021-05-16 14:20:35 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|