From 43839a9115ed6f5e27ca86e24f3d7ce05e2a4db4 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 18 Oct 2024 01:58:14 +0900 Subject: [PATCH] tests: Update ui test output to nightly-2024-10-17 --- tests/ui/not_unpin/conflict-unpin.stderr | 6 ++++++ tests/ui/not_unpin/impl-unsafe-unpin.stderr | 3 +++ 2 files changed, 9 insertions(+) diff --git a/tests/ui/not_unpin/conflict-unpin.stderr b/tests/ui/not_unpin/conflict-unpin.stderr index dbd785ae..b8a8abc9 100644 --- a/tests/ui/not_unpin/conflict-unpin.stderr +++ b/tests/ui/not_unpin/conflict-unpin.stderr @@ -6,6 +6,8 @@ error[E0119]: conflicting implementations of trait `Unpin` for type `Foo<_, _>` ... 12 | impl Unpin for Foo where T: Unpin {} | --------------------------------------------- first implementation here + | + = note: upstream crates may add a new impl of trait `std::marker::Unpin` for type `_::_pin_project::__private::Wrapper<'_, std::marker::PhantomPinned>` in future versions error[E0119]: conflicting implementations of trait `Unpin` for type `Bar<_, _>` --> tests/ui/not_unpin/conflict-unpin.rs:14:15 @@ -15,6 +17,8 @@ error[E0119]: conflicting implementations of trait `Unpin` for type `Bar<_, _>` ... 21 | impl Unpin for Bar {} | ------------------------------ first implementation here + | + = note: upstream crates may add a new impl of trait `std::marker::Unpin` for type `_::_pin_project::__private::Wrapper<'_, std::marker::PhantomPinned>` in future versions error[E0119]: conflicting implementations of trait `Unpin` for type `Baz<_, _>` --> tests/ui/not_unpin/conflict-unpin.rs:23:15 @@ -24,3 +28,5 @@ error[E0119]: conflicting implementations of trait `Unpin` for type `Baz<_, _>` ... 30 | impl Unpin for Baz {} | -------------------------------------------- first implementation here + | + = note: upstream crates may add a new impl of trait `std::marker::Unpin` for type `_::_pin_project::__private::Wrapper<'_, std::marker::PhantomPinned>` in future versions diff --git a/tests/ui/not_unpin/impl-unsafe-unpin.stderr b/tests/ui/not_unpin/impl-unsafe-unpin.stderr index f00aa5c7..c889feb2 100644 --- a/tests/ui/not_unpin/impl-unsafe-unpin.stderr +++ b/tests/ui/not_unpin/impl-unsafe-unpin.stderr @@ -7,6 +7,7 @@ error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Foo<_ 12 | unsafe impl UnsafeUnpin for Foo where T: Unpin {} | ---------------------------------------------------------- first implementation here | + = note: upstream crates may add a new impl of trait `std::marker::Unpin` for type `_::_pin_project::__private::Wrapper<'_, std::marker::PhantomPinned>` in future versions = note: this error originates in the derive macro `::pin_project::__private::__PinProjectInternalDerive` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Bar<_, _>` @@ -18,6 +19,7 @@ error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Bar<_ 21 | unsafe impl UnsafeUnpin for Bar {} | ------------------------------------------- first implementation here | + = note: upstream crates may add a new impl of trait `std::marker::Unpin` for type `_::_pin_project::__private::Wrapper<'_, std::marker::PhantomPinned>` in future versions = note: this error originates in the derive macro `::pin_project::__private::__PinProjectInternalDerive` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Baz<_, _>` @@ -29,4 +31,5 @@ error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Baz<_ 30 | unsafe impl UnsafeUnpin for Baz {} | --------------------------------------------------------- first implementation here | + = note: upstream crates may add a new impl of trait `std::marker::Unpin` for type `_::_pin_project::__private::Wrapper<'_, std::marker::PhantomPinned>` in future versions = note: this error originates in the derive macro `::pin_project::__private::__PinProjectInternalDerive` (in Nightly builds, run with -Z macro-backtrace for more info)