]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-impl-trait/multiple-def-uses-in-one-fn.stderr
Rollup merge of #97317 - GuillaumeGomez:gui-settings-text-click, r=jsha
[rust.git] / src / test / ui / type-alias-impl-trait / multiple-def-uses-in-one-fn.stderr
1 error[E0277]: the trait bound `&'static B: From<&A>` is not satisfied
2   --> $DIR/multiple-def-uses-in-one-fn.rs:10:9
3    |
4 LL |     (a, a)
5    |         ^ the trait `From<&A>` is not implemented for `&'static B`
6    |
7    = note: required because of the requirements on the impl of `Into<&'static B>` for `&A`
8 help: consider introducing a `where` bound, but there might be an alternative better way to express this requirement
9    |
10 LL | fn f<A, B: 'static>(a: &'static A, b: B) -> (X<A, B>, X<B, A>) where &'static B: From<&A> {
11    |                                                                ++++++++++++++++++++++++++
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.