]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-impl-trait/generic_duplicate_param_use3.stderr
unboxed-closures and type-alias-impl-trait nll revisions
[rust.git] / src / test / ui / type-alias-impl-trait / generic_duplicate_param_use3.stderr
1 error: concrete type differs from previous defining opaque type use
2   --> $DIR/generic_duplicate_param_use3.rs:16:5
3    |
4 LL |     u
5    |     ^ expected `T`, got `U`
6    |
7 note: previous use here
8   --> $DIR/generic_duplicate_param_use3.rs:12:5
9    |
10 LL |     t
11    |     ^
12
13 error[E0277]: `T` doesn't implement `Debug`
14   --> $DIR/generic_duplicate_param_use3.rs:8:18
15    |
16 LL | type Two<T, U> = impl Debug;
17    |                  ^^^^^^^^^^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
18    |
19 help: consider restricting type parameter `T`
20    |
21 LL | type Two<T: std::fmt::Debug, U> = impl Debug;
22    |           +++++++++++++++++
23
24 error: aborting due to 2 previous errors
25
26 For more information about this error, try `rustc --explain E0277`.