aboutsummaryrefslogtreecommitdiff
path: root/tests/unsafe_unpin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unsafe_unpin.rs')
-rw-r--r--tests/unsafe_unpin.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unsafe_unpin.rs b/tests/unsafe_unpin.rs
index 8b6411c..72f40f9 100644
--- a/tests/unsafe_unpin.rs
+++ b/tests/unsafe_unpin.rs
@@ -41,10 +41,10 @@ assert_not_unpin!(OverlappingLifetimeNames<'_, PhantomPinned, PhantomPinned>);
#[test]
fn trivial_bounds() {
#[pin_project(UnsafeUnpin)]
- pub struct NotImplementUnsafUnpin {
+ pub struct NotImplementUnsafeUnpin {
#[pin]
f: PhantomPinned,
}
- assert_not_unpin!(NotImplementUnsafUnpin);
+ assert_not_unpin!(NotImplementUnsafeUnpin);
}