aboutsummaryrefslogtreecommitdiff
path: root/tests/expand/multifields/enum.expanded.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/expand/multifields/enum.expanded.rs')
-rw-r--r--tests/expand/multifields/enum.expanded.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/expand/multifields/enum.expanded.rs b/tests/expand/multifields/enum.expanded.rs
index 8223de3..003f1c7 100644
--- a/tests/expand/multifields/enum.expanded.rs
+++ b/tests/expand/multifields/enum.expanded.rs
@@ -118,6 +118,7 @@ const _: () = {
extern crate pin_project as _pin_project;
impl<T, U> Enum<T, U> {
#[allow(dead_code)]
+ #[inline]
fn project<'pin>(
self: _pin_project::__private::Pin<&'pin mut Self>,
) -> EnumProj<'pin, T, U> {
@@ -149,6 +150,7 @@ const _: () = {
}
#[allow(dead_code)]
#[allow(clippy::missing_const_for_fn)]
+ #[inline]
fn project_ref<'pin>(
self: _pin_project::__private::Pin<&'pin Self>,
) -> EnumProjRef<'pin, T, U> {
@@ -179,6 +181,7 @@ const _: () = {
}
}
#[allow(dead_code)]
+ #[inline]
fn project_replace(
self: _pin_project::__private::Pin<&mut Self>,
__replacement: Self,