]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-43355.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-43355.stderr
1 error: conflicting implementations of trait `Trait1<std::boxed::Box<_>>` for type `A`: (E0119)
2   --> $DIR/issue-43355.rs:13:1
3    |
4 LL | impl<X, T> Trait1<X> for T where T: Trait2<X> {
5    | --------------------------------------------- first implementation here
6 ...
7 LL | impl<X> Trait1<Box<X>> for A {
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `A`
9    |
10    = note: #[deny(incoherent_fundamental_impls)] on by default
11    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
12    = note: for more information, see issue #46205 <https://github.com/rust-lang/rust/issues/46205>
13    = note: downstream crates may implement trait `Trait2<std::boxed::Box<_>>` for type `A`
14
15 error: aborting due to previous error
16