]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/impl-trait/auto-trait.rs
Rollup merge of #105555 - krasimirgg:llvm-int-opt-2, r=cuviper
[rust.git] / src / test / ui / impl-trait / auto-trait.rs
index afa95645a27869ba85a4948bac49ac89d2d7c584..35994e4a5ba3f5b7556ef82e9cbb6c0def9e12e6 100644 (file)
@@ -20,7 +20,6 @@ impl<T: Send> AnotherTrait for T {}
 // in the future.)
 impl AnotherTrait for D<OpaqueType> {
     //~^ ERROR conflicting implementations of trait `AnotherTrait` for type `D<OpaqueType>`
-    //~| ERROR cannot implement trait on type alias impl trait
 }
 
 fn main() {}