Searched refs:MustNotImplDrop (Results 1 – 3 of 3) sorted by relevance
1 error[E0119]: conflicting implementations of trait `_::MustNotImplDrop` for type `Foo<_, _>`:
1301 trait MustNotImplDrop {} trait1303 impl<T: $crate::__private::Drop> MustNotImplDrop for T {}1304 impl <$($impl_generics)*> MustNotImplDrop for $ident <$($ty_generics)*> impl
1294 // will compile, as there is only one impl of MustNotImplDrop for the user type1296 // 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)*>