aboutsummaryrefslogtreecommitdiff
path: root/tests/expand/naming/struct-none.expanded.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/expand/naming/struct-none.expanded.rs')
-rw-r--r--tests/expand/naming/struct-none.expanded.rs53
1 files changed, 20 insertions, 33 deletions
diff --git a/tests/expand/naming/struct-none.expanded.rs b/tests/expand/naming/struct-none.expanded.rs
index 2528ece..3089a54 100644
--- a/tests/expand/naming/struct-none.expanded.rs
+++ b/tests/expand/naming/struct-none.expanded.rs
@@ -13,20 +13,16 @@ struct Struct<T, U> {
#[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(box_pointers)]
- #[allow(deprecated)]
- #[allow(explicit_outlives_requirements)]
- #[allow(single_use_lifetimes)]
- #[allow(unreachable_pub)]
- #[allow(clippy::unknown_clippy_lints)]
- #[allow(clippy::pattern_type_mismatch)]
- #[allow(clippy::redundant_pub_crate)]
+ #[allow(unused_extern_crates)]
+ extern crate pin_project as _pin_project;
#[allow(dead_code)]
#[allow(clippy::mut_mut)]
- #[allow(clippy::type_repetition_in_bounds)]
struct __StructProjection<'pin, T, U>
where
Struct<T, U>: 'pin,
@@ -34,17 +30,8 @@ const _: () = {
pinned: ::pin_project::__private::Pin<&'pin mut (T)>,
unpinned: &'pin mut (U),
}
- #[allow(box_pointers)]
- #[allow(deprecated)]
- #[allow(explicit_outlives_requirements)]
- #[allow(single_use_lifetimes)]
- #[allow(unreachable_pub)]
- #[allow(clippy::unknown_clippy_lints)]
- #[allow(clippy::pattern_type_mismatch)]
- #[allow(clippy::redundant_pub_crate)]
#[allow(dead_code)]
#[allow(clippy::ref_option_ref)]
- #[allow(clippy::type_repetition_in_bounds)]
struct __StructProjectionRef<'pin, T, U>
where
Struct<T, U>: 'pin,
@@ -54,61 +41,61 @@ const _: () = {
}
impl<T, U> Struct<T, U> {
fn project<'pin>(
- self: ::pin_project::__private::Pin<&'pin mut Self>,
+ self: _pin_project::__private::Pin<&'pin mut Self>,
) -> __StructProjection<'pin, T, U> {
unsafe {
let Self { pinned, unpinned } = self.get_unchecked_mut();
__StructProjection {
- pinned: ::pin_project::__private::Pin::new_unchecked(pinned),
+ pinned: _pin_project::__private::Pin::new_unchecked(pinned),
unpinned,
}
}
}
#[allow(clippy::missing_const_for_fn)]
fn project_ref<'pin>(
- self: ::pin_project::__private::Pin<&'pin Self>,
+ self: _pin_project::__private::Pin<&'pin Self>,
) -> __StructProjectionRef<'pin, T, U> {
unsafe {
let Self { pinned, unpinned } = self.get_ref();
__StructProjectionRef {
- pinned: ::pin_project::__private::Pin::new_unchecked(pinned),
+ pinned: _pin_project::__private::Pin::new_unchecked(pinned),
unpinned,
}
}
}
}
- #[forbid(safe_packed_borrows)]
+ #[forbid(unaligned_references, safe_packed_borrows)]
fn __assert_not_repr_packed<T, U>(this: &Struct<T, U>) {
let _ = &this.pinned;
let _ = &this.unpinned;
}
#[allow(missing_debug_implementations)]
struct __Struct<'pin, T, U> {
- __pin_project_use_generics: ::pin_project::__private::AlwaysUnpin<
+ __pin_project_use_generics: _pin_project::__private::AlwaysUnpin<
'pin,
(
- ::pin_project::__private::PhantomData<T>,
- ::pin_project::__private::PhantomData<U>,
+ _pin_project::__private::PhantomData<T>,
+ _pin_project::__private::PhantomData<U>,
),
>,
__field0: T,
}
- impl<'pin, T, U> ::pin_project::__private::Unpin for Struct<T, U> where
- __Struct<'pin, T, U>: ::pin_project::__private::Unpin
+ impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> where
+ __Struct<'pin, T, U>: _pin_project::__private::Unpin
{
}
#[doc(hidden)]
- unsafe impl<'pin, T, U> ::pin_project::UnsafeUnpin for Struct<T, U> where
- __Struct<'pin, T, U>: ::pin_project::__private::Unpin
+ unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> where
+ __Struct<'pin, T, U>: _pin_project::__private::Unpin
{
}
trait StructMustNotImplDrop {}
#[allow(clippy::drop_bounds, drop_bounds)]
- impl<T: ::pin_project::__private::Drop> StructMustNotImplDrop for T {}
+ impl<T: _pin_project::__private::Drop> StructMustNotImplDrop for T {}
impl<T, U> StructMustNotImplDrop for Struct<T, U> {}
#[doc(hidden)]
- impl<T, U> ::pin_project::__private::PinnedDrop for Struct<T, U> {
- unsafe fn drop(self: ::pin_project::__private::Pin<&mut Self>) {}
+ impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> {
+ unsafe fn drop(self: _pin_project::__private::Pin<&mut Self>) {}
}
};
fn main() {}