mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
25 lines
801 B
Plaintext
25 lines
801 B
Plaintext
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 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|