]> git.lizzy.rs Git - rust.git/blob - tests/ui/type-alias-impl-trait/issue-84660-unsoundness.stderr
Auto merge of #106503 - cjgillot:remap-nofilter, r=oli-obk
[rust.git] / tests / ui / type-alias-impl-trait / issue-84660-unsoundness.stderr
1 error[E0119]: conflicting implementations of trait `Trait<Bar, _>`
2   --> $DIR/issue-84660-unsoundness.rs:23:1
3    |
4 LL | impl<In, Out> Trait<Bar, In> for Out {
5    | ------------------------------------ first implementation here
6 ...
7 LL | impl<In, Out> Trait<(), In> for Out {
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0119`.