]> git.proxmox.com Git - rustc.git/blobdiff - vendor/pin-project-lite/tests/ui/overlapping_unpin_struct.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / vendor / pin-project-lite / tests / ui / overlapping_unpin_struct.stderr
diff --git a/vendor/pin-project-lite/tests/ui/overlapping_unpin_struct.stderr b/vendor/pin-project-lite/tests/ui/overlapping_unpin_struct.stderr
deleted file mode 100644 (file)
index ab76f81..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-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>`