aboutsummaryrefslogtreecommitdiff
path: root/tests/expand/unsafe_unpin/enum.expanded.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/expand/unsafe_unpin/enum.expanded.rs')
-rw-r--r--tests/expand/unsafe_unpin/enum.expanded.rs31
1 files changed, 18 insertions, 13 deletions
diff --git a/tests/expand/unsafe_unpin/enum.expanded.rs b/tests/expand/unsafe_unpin/enum.expanded.rs
index df962d0..3d53a1e 100644
--- a/tests/expand/unsafe_unpin/enum.expanded.rs
+++ b/tests/expand/unsafe_unpin/enum.expanded.rs
@@ -17,9 +17,9 @@ enum Enum<T, U> {
#[allow(clippy::unknown_clippy_lints)]
#[allow(clippy::pattern_type_mismatch)]
#[allow(clippy::redundant_pub_crate)]
+#[allow(clippy::type_repetition_in_bounds)]
#[allow(dead_code)]
#[allow(clippy::mut_mut)]
-#[allow(clippy::type_repetition_in_bounds)]
enum EnumProj<'pin, T, U>
where
Enum<T, U>: 'pin,
@@ -39,9 +39,9 @@ where
#[allow(clippy::unknown_clippy_lints)]
#[allow(clippy::pattern_type_mismatch)]
#[allow(clippy::redundant_pub_crate)]
+#[allow(clippy::type_repetition_in_bounds)]
#[allow(dead_code)]
#[allow(clippy::ref_option_ref)]
-#[allow(clippy::type_repetition_in_bounds)]
enum EnumProjRef<'pin, T, U>
where
Enum<T, U>: 'pin,
@@ -61,21 +61,26 @@ where
#[allow(clippy::unknown_clippy_lints)]
#[allow(clippy::pattern_type_mismatch)]
#[allow(clippy::redundant_pub_crate)]
+#[allow(clippy::type_repetition_in_bounds)]
+#[allow(unused_qualifications)]
#[allow(clippy::semicolon_if_nothing_returned)]
+#[allow(clippy::use_self)]
#[allow(clippy::used_underscore_binding)]
const _: () = {
+ #[allow(unused_extern_crates)]
+ extern crate pin_project as _pin_project;
impl<T, U> Enum<T, U> {
fn project<'pin>(
- self: ::pin_project::__private::Pin<&'pin mut Self>,
+ self: _pin_project::__private::Pin<&'pin mut Self>,
) -> EnumProj<'pin, T, U> {
unsafe {
match self.get_unchecked_mut() {
Self::Struct { pinned, unpinned } => EnumProj::Struct {
- pinned: ::pin_project::__private::Pin::new_unchecked(pinned),
+ pinned: _pin_project::__private::Pin::new_unchecked(pinned),
unpinned,
},
Self::Tuple(_0, _1) => {
- EnumProj::Tuple(::pin_project::__private::Pin::new_unchecked(_0), _1)
+ EnumProj::Tuple(_pin_project::__private::Pin::new_unchecked(_0), _1)
}
Self::Unit => EnumProj::Unit,
}
@@ -83,33 +88,33 @@ const _: () = {
}
#[allow(clippy::missing_const_for_fn)]
fn project_ref<'pin>(
- self: ::pin_project::__private::Pin<&'pin Self>,
+ self: _pin_project::__private::Pin<&'pin Self>,
) -> EnumProjRef<'pin, T, U> {
unsafe {
match self.get_ref() {
Self::Struct { pinned, unpinned } => EnumProjRef::Struct {
- pinned: ::pin_project::__private::Pin::new_unchecked(pinned),
+ pinned: _pin_project::__private::Pin::new_unchecked(pinned),
unpinned,
},
Self::Tuple(_0, _1) => {
- EnumProjRef::Tuple(::pin_project::__private::Pin::new_unchecked(_0), _1)
+ EnumProjRef::Tuple(_pin_project::__private::Pin::new_unchecked(_0), _1)
}
Self::Unit => EnumProjRef::Unit,
}
}
}
}
- impl<'pin, T, U> ::pin_project::__private::Unpin for Enum<T, U> where
- ::pin_project::__private::Wrapper<'pin, Self>: ::pin_project::UnsafeUnpin
+ impl<'pin, T, U> _pin_project::__private::Unpin for Enum<T, U> where
+ _pin_project::__private::Wrapper<'pin, Self>: _pin_project::UnsafeUnpin
{
}
trait EnumMustNotImplDrop {}
#[allow(clippy::drop_bounds, drop_bounds)]
- impl<T: ::pin_project::__private::Drop> EnumMustNotImplDrop for T {}
+ impl<T: _pin_project::__private::Drop> EnumMustNotImplDrop for T {}
impl<T, U> EnumMustNotImplDrop for Enum<T, U> {}
#[doc(hidden)]
- impl<T, U> ::pin_project::__private::PinnedDrop for Enum<T, U> {
- unsafe fn drop(self: ::pin_project::__private::Pin<&mut Self>) {}
+ impl<T, U> _pin_project::__private::PinnedDrop for Enum<T, U> {
+ unsafe fn drop(self: _pin_project::__private::Pin<&mut Self>) {}
}
};
unsafe impl<T: Unpin, U> UnsafeUnpin for Enum<T, U> {}