]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence_copy_like_err_struct.stderr
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.git] / src / test / ui / coherence / coherence_copy_like_err_struct.stderr
1 error[E0119]: conflicting implementations of trait `MyTrait` for type `lib::MyStruct<MyType>`
2   --> $DIR/coherence_copy_like_err_struct.rs:19:1
3    |
4 LL | impl<T: lib::MyCopy> MyTrait for T { }
5    | ---------------------------------- first implementation here
6 ...
7 LL | impl MyTrait for lib::MyStruct<MyType> { }
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `lib::MyStruct<MyType>`
9    |
10    = note: upstream crates may add a new impl of trait `lib::MyCopy` for type `lib::MyStruct<MyType>` in future versions
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0119`.