I noticed error output like the following in the ui tests of #54687. ```console error[E0119]: conflicting implementations of trait `std::marker::Copy` for type `&NotSync`: --> $DIR/coherence-impls-copy.rs:41:1 | | impl Copy for &'static NotSync {} | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: conflicting implementation in crate `core`: - impl<'_, T> std::marker::Copy for &T where T: ?Sized; ``` The `impl<'_, T>` is not valid syntax. The error message should use `impl<T>`.