aboutsummaryrefslogtreecommitdiff
path: root/examples/unsafe_unpin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unsafe_unpin.rs')
-rw-r--r--examples/unsafe_unpin.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/unsafe_unpin.rs b/examples/unsafe_unpin.rs
new file mode 100644
index 0000000..5ec0cd2
--- /dev/null
+++ b/examples/unsafe_unpin.rs
@@ -0,0 +1,16 @@
+// See ./unsafe_unpin-expanded.rs for generated code.
+
+#![allow(dead_code)]
+
+use pin_project::{pin_project, UnsafeUnpin};
+
+#[pin_project(UnsafeUnpin)]
+pub struct Struct<T, U> {
+ #[pin]
+ pinned: T,
+ unpinned: U,
+}
+
+unsafe impl<T: Unpin, U> UnsafeUnpin for Struct<T, U> {}
+
+fn main() {}