aboutsummaryrefslogtreecommitdiff
path: root/tests/expand/naming/struct-mut.rs
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:02:45 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:02:45 +0000
commit8d2bd5dac9739388f8a8ac985e15119c6d34c05d (patch)
tree7fcd35ff92b7d412fdee86b26ca803e64cf1df60 /tests/expand/naming/struct-mut.rs
parent73d5d1b098e3449ff2b6bd7fce807217aba158d5 (diff)
parentc9920d7cdd482613fb6c77f8d4f6c08d0e4ace71 (diff)
downloadpin-project-lite-android13-mainline-resolv-release.tar.gz
Change-Id: Ia9dc09c81aabdccceb91765827ccbea838e07c09
Diffstat (limited to 'tests/expand/naming/struct-mut.rs')
-rw-r--r--tests/expand/naming/struct-mut.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/expand/naming/struct-mut.rs b/tests/expand/naming/struct-mut.rs
new file mode 100644
index 0000000..59db445
--- /dev/null
+++ b/tests/expand/naming/struct-mut.rs
@@ -0,0 +1,12 @@
+use pin_project_lite::pin_project;
+
+pin_project! {
+ #[project = StructProj]
+ struct Struct<T, U> {
+ #[pin]
+ pinned: T,
+ unpinned: U,
+ }
+}
+
+fn main() {}