]> git.proxmox.com Git - rustc.git/blob - src/test/ui/type-alias-impl-trait/multiple-def-uses-in-one-fn.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.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:9:45
3 |
4 LL | fn f<A, B: 'static>(a: &'static A, b: B) -> (X<A, B>, X<B, 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`.