]> git.proxmox.com Git - rustc.git/blob - src/test/ui/impl-trait/auto-trait.min_tait.stderr
New upstream version 1.53.0+dfsg1
[rustc.git] / src / test / ui / impl-trait / auto-trait.min_tait.stderr
1 error[E0119]: conflicting implementations of trait `AnotherTrait` for type `D<impl OpaqueTrait>`
2 --> $DIR/auto-trait.rs:24: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<impl OpaqueTrait>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0119`.