Home
last modified time | relevance | path

Searched refs:MustNotImplDrop (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/pin-project-lite/tests/ui/
Dconflict-drop.stderr1 error[E0119]: conflicting implementations of trait `_::MustNotImplDrop` for type `Foo<_, _>`:
/external/rust/crates/pin-project-lite/src/
Dlib.rs1301 trait MustNotImplDrop {} trait
1303 impl<T: $crate::__private::Drop> MustNotImplDrop for T {}
1304 impl <$($impl_generics)*> MustNotImplDrop for $ident <$($ty_generics)*> impl
Dlib.rs.orig1294 // will compile, as there is only one impl of MustNotImplDrop for the user type
1296 // which will then comflict with the explicit MustNotImplDrop impl below.
1298 trait MustNotImplDrop {}
1300 impl<T: $crate::__private::Drop> MustNotImplDrop for T {}
1301 impl <$($impl_generics)*> MustNotImplDrop for $ident <$($ty_generics)*>