aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pin_project/add-pinned-field.stderr
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-03-16 22:42:00 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-03-16 22:42:00 +0000
commitc723ffec2507ab15ba74ce86d15645cf194d9196 (patch)
tree80c46c7f97eb0158db00b2c4710dd54073c36733 /tests/ui/pin_project/add-pinned-field.stderr
parent410b9e3b15bab1e68feb13f22a5240053b1363c5 (diff)
parent1b1144c17aba196c4ca53e7596a708d993479b39 (diff)
downloadpin-project-c723ffec2507ab15ba74ce86d15645cf194d9196.tar.gz
Change-Id: I6491f6a3cdf0317cb79be18d620105bf3bbfc99b
Diffstat (limited to 'tests/ui/pin_project/add-pinned-field.stderr')
-rw-r--r--tests/ui/pin_project/add-pinned-field.stderr28
1 files changed, 16 insertions, 12 deletions
diff --git a/tests/ui/pin_project/add-pinned-field.stderr b/tests/ui/pin_project/add-pinned-field.stderr
index bdeafb8..d0832cc 100644
--- a/tests/ui/pin_project/add-pinned-field.stderr
+++ b/tests/ui/pin_project/add-pinned-field.stderr
@@ -1,48 +1,52 @@
error[E0277]: `PhantomPinned` cannot be unpinned
- --> $DIR/add-pinned-field.rs:21:5
+ --> tests/ui/pin_project/add-pinned-field.rs:21:5
|
-4 | fn is_unpin<T: Unpin>() {}
- | ----- required by this bound in `is_unpin`
-...
21 | is_unpin::<Foo>(); //~ ERROR E0277
| ^^^^^^^^^^^^^^^ within `__Foo<'_>`, the trait `Unpin` is not implemented for `PhantomPinned`
|
= note: consider using `Box::pin`
note: required because it appears within the type `__Foo<'_>`
- --> $DIR/add-pinned-field.rs:8:8
+ --> tests/ui/pin_project/add-pinned-field.rs:8:8
|
8 | struct Foo {
| ^^^
note: required because of the requirements on the impl of `Unpin` for `Foo`
- --> $DIR/add-pinned-field.rs:6:1
+ --> tests/ui/pin_project/add-pinned-field.rs:6:1
|
6 | #[pin_project]
| ^^^^^^^^^^^^^^
7 | #[add_pinned_field]
8 | struct Foo {
| ^^^
+note: required by a bound in `is_unpin`
+ --> tests/ui/pin_project/add-pinned-field.rs:4:16
+ |
+4 | fn is_unpin<T: Unpin>() {}
+ | ^^^^^ required by this bound in `is_unpin`
= note: this error originates in the derive macro `::pin_project::__private::__PinProjectInternalDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0277]: `PhantomPinned` cannot be unpinned
- --> $DIR/add-pinned-field.rs:22:5
+ --> tests/ui/pin_project/add-pinned-field.rs:22:5
|
-4 | fn is_unpin<T: Unpin>() {}
- | ----- required by this bound in `is_unpin`
-...
22 | is_unpin::<Bar>(); //~ ERROR E0277
| ^^^^^^^^^^^^^^^ within `__Bar<'_>`, the trait `Unpin` is not implemented for `PhantomPinned`
|
= note: consider using `Box::pin`
note: required because it appears within the type `__Bar<'_>`
- --> $DIR/add-pinned-field.rs:15:8
+ --> tests/ui/pin_project/add-pinned-field.rs:15:8
|
15 | struct Bar {
| ^^^
note: required because of the requirements on the impl of `Unpin` for `Bar`
- --> $DIR/add-pinned-field.rs:14:1
+ --> tests/ui/pin_project/add-pinned-field.rs:14:1
|
14 | #[pin_project]
| ^^^^^^^^^^^^^^
15 | struct Bar {
| ^^^
+note: required by a bound in `is_unpin`
+ --> tests/ui/pin_project/add-pinned-field.rs:4:16
+ |
+4 | fn is_unpin<T: Unpin>() {}
+ | ^^^^^ required by this bound in `is_unpin`
= note: this error originates in the derive macro `::pin_project::__private::__PinProjectInternalDerive` (in Nightly builds, run with -Z macro-backtrace for more info)