]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/auto-trait.stderr
Rollup merge of #103159 - cuviper:check_pow-final-try_opt, r=Mark-Simulacrum
[rust.git] / src / test / ui / impl-trait / auto-trait.stderr
1 error[E0119]: conflicting implementations of trait `AnotherTrait` for type `D<OpaqueType>`
2   --> $DIR/auto-trait.rs:21:1
3    |
4 LL | impl<T: Send> AnotherTrait for T {}
5    | -------------------------------- first implementation here
6 ...
7 LL | impl AnotherTrait for D<OpaqueType> {
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `D<OpaqueType>`
9
10 error: cannot implement trait on type alias impl trait
11   --> $DIR/auto-trait.rs:21:25
12    |
13 LL | impl AnotherTrait for D<OpaqueType> {
14    |                         ^^^^^^^^^^
15    |
16 note: type alias impl trait defined here
17   --> $DIR/auto-trait.rs:7:19
18    |
19 LL | type OpaqueType = impl OpaqueTrait;
20    |                   ^^^^^^^^^^^^^^^^
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0119`.