]> git.proxmox.com Git - rustc.git/blame - src/test/ui/type-alias-impl-trait/generic_duplicate_param_use5.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / type-alias-impl-trait / generic_duplicate_param_use5.stderr
CommitLineData
416331ca 1error: concrete type differs from previous defining opaque type use
29967ef6 2 --> $DIR/generic_duplicate_param_use5.rs:16:1
9fa01778 3 |
3dfed10e
XL
4LL | fn three<T: Debug, U: Debug>(t: T, u: U) -> Two<T, U> {
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `(T, U)`, got `(U, T)`
9fa01778
XL
6 |
7note: previous use here
29967ef6 8 --> $DIR/generic_duplicate_param_use5.rs:12:1
9fa01778 9 |
3dfed10e
XL
10LL | fn two<T: Debug, U: Debug>(t: T, u: U) -> Two<T, U> {
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9fa01778 12
29967ef6
XL
13error[E0277]: `T` doesn't implement `Debug`
14 --> $DIR/generic_duplicate_param_use5.rs:8:18
15 |
16LL | type Two<T, U> = impl Debug;
17 | ^^^^^^^^^^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
18 |
19 = note: required because of the requirements on the impl of `Debug` for `(T, U)`
20help: consider restricting type parameter `T`
21 |
22LL | type Two<T: Debug, U> = impl Debug;
23 | ^^^^^^^
24
25error[E0277]: `U` doesn't implement `Debug`
26 --> $DIR/generic_duplicate_param_use5.rs:8:18
27 |
28LL | type Two<T, U> = impl Debug;
29 | ^^^^^^^^^^ `U` cannot be formatted using `{:?}` because it doesn't implement `Debug`
30 |
31 = note: required because of the requirements on the impl of `Debug` for `(T, U)`
32help: consider restricting type parameter `U`
33 |
34LL | type Two<T, U: Debug> = impl Debug;
35 | ^^^^^^^
36
37error: aborting due to 3 previous errors
9fa01778 38
29967ef6 39For more information about this error, try `rustc --explain E0277`.