aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pin_project/overlapping_unpin_struct.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pin_project/overlapping_unpin_struct.stderr')
-rw-r--r--tests/ui/pin_project/overlapping_unpin_struct.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/pin_project/overlapping_unpin_struct.stderr b/tests/ui/pin_project/overlapping_unpin_struct.stderr
new file mode 100644
index 0000000..ab76f81
--- /dev/null
+++ b/tests/ui/pin_project/overlapping_unpin_struct.stderr
@@ -0,0 +1,11 @@
+error[E0277]: `PhantomPinned` cannot be unpinned
+ --> $DIR/overlapping_unpin_struct.rs:18:5
+ |
+15 | fn is_unpin<T: Unpin>() {}
+ | ----- required by this bound in `is_unpin`
+...
+18 | is_unpin::<Foo<PhantomPinned>>(); //~ ERROR E0277
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ within `_::__Origin<'_, PhantomPinned>`, the trait `Unpin` is not implemented for `PhantomPinned`
+ |
+ = note: required because it appears within the type `_::__Origin<'_, PhantomPinned>`
+ = note: required because of the requirements on the impl of `Unpin` for `Foo<PhantomPinned>`