rust/tests/ui/suggestions/issue-84973.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
799 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `Fancy: SomeTrait` is not satisfied
2022-08-16 23:13:23 +00:00
--> $DIR/issue-84973.rs:6:24
|
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
|
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 {
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);
| +
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.