]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence_copy_like_err_fundamental_struct_tuple.old.stderr
Remove leftover AwaitOrigin
[rust.git] / src / test / ui / coherence / coherence_copy_like_err_fundamental_struct_tuple.old.stderr
1 error[E0119]: conflicting implementations of trait `MyTrait` for type `lib::MyFundamentalStruct<(MyType,)>`:
2   --> $DIR/coherence_copy_like_err_fundamental_struct_tuple.rs:19:1
3    |
4 LL | impl<T: lib::MyCopy> MyTrait for T { }
5    | ---------------------------------- first implementation here
6 ...
7 LL | impl MyTrait for lib::MyFundamentalStruct<(MyType,)> { }
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `lib::MyFundamentalStruct<(MyType,)>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0119`.