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