error[E0277]: the trait bound `A: Foo` is not satisfied --> $DIR/generic_duplicate_param_use9.rs:15:5 | LL | (t, u, T::BAR) | ^^^^^^^^^^^^^^ the trait `Foo` is not implemented for `A` | help: consider restricting type parameter `A` | LL | type Two = impl Debug; | +++++ error[E0277]: `A` doesn't implement `Debug` --> $DIR/generic_duplicate_param_use9.rs:15:5 | LL | (t, u, T::BAR) | ^^^^^^^^^^^^^^ `A` cannot be formatted using `{:?}` because it doesn't implement `Debug` | = note: required because of the requirements on the impl of `Debug` for `(A, B, _)` help: consider restricting type parameter `A` | LL | type Two = impl Debug; | +++++++++++++++++ error[E0277]: `B` doesn't implement `Debug` --> $DIR/generic_duplicate_param_use9.rs:15:5 | LL | (t, u, T::BAR) | ^^^^^^^^^^^^^^ `B` cannot be formatted using `{:?}` because it doesn't implement `Debug` | = note: required because of the requirements on the impl of `Debug` for `(A, B, _)` help: consider restricting type parameter `B` | LL | type Two = impl Debug; | +++++++++++++++++ error[E0277]: `A` doesn't implement `Debug` --> $DIR/generic_duplicate_param_use9.rs:22:5 | LL | (t, u, 42) | ^^^^^^^^^^ `A` cannot be formatted using `{:?}` because it doesn't implement `Debug` | = note: required because of the requirements on the impl of `Debug` for `(A, B, i32)` help: consider restricting type parameter `A` | LL | type Two = impl Debug; | +++++++++++++++++ error[E0277]: `B` doesn't implement `Debug` --> $DIR/generic_duplicate_param_use9.rs:22:5 | LL | (t, u, 42) | ^^^^^^^^^^ `B` cannot be formatted using `{:?}` because it doesn't implement `Debug` | = note: required because of the requirements on the impl of `Debug` for `(A, B, i32)` help: consider restricting type parameter `B` | LL | type Two = impl Debug; | +++++++++++++++++ error: aborting due to 5 previous errors For more information about this error, try `rustc --explain E0277`.