error[E0119]: conflicting implementations of trait `Copy` for type `S<_>` --> $DIR/bad-const-wf-doesnt-specialize.rs:10:1 | LL | impl Copy for S {} | -------------------------------- first implementation here LL | LL | impl Copy for S {} | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `S<_>` error[E0308]: mismatched types --> $DIR/bad-const-wf-doesnt-specialize.rs:8:31 | LL | impl Copy for S {} | ^ expected `usize`, found `i32` error: aborting due to 2 previous errors Some errors have detailed explanations: E0119, E0308. For more information about an error, try `rustc --explain E0119`.