Skip to content

Commit

Permalink
tests: Update ui test output to nightly-2024-09-13
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Sep 13, 2024
1 parent 52105ed commit d404db9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions tests/ui/not_unpin/conflict-unpin.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ error[E0119]: conflicting implementations of trait `Unpin` for type `Foo<_, _>`
...
12 | impl<T, U> Unpin for Foo<T, U> 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
Expand All @@ -17,8 +15,6 @@ error[E0119]: conflicting implementations of trait `Unpin` for type `Bar<_, _>`
...
21 | impl<T, U> Unpin for Bar<T, U> {}
| ------------------------------ 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
Expand All @@ -28,5 +24,3 @@ error[E0119]: conflicting implementations of trait `Unpin` for type `Baz<_, _>`
...
30 | impl<T: Unpin, U: Unpin> Unpin for Baz<T, U> {}
| -------------------------------------------- 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
3 changes: 0 additions & 3 deletions tests/ui/not_unpin/impl-unsafe-unpin.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Foo<_
12 | unsafe impl<T, U> UnsafeUnpin for Foo<T, U> 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<_, _>`
Expand All @@ -19,7 +18,6 @@ error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Bar<_
21 | unsafe impl<T, U> UnsafeUnpin for Bar<T, U> {}
| ------------------------------------------- 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<_, _>`
Expand All @@ -31,5 +29,4 @@ error[E0119]: conflicting implementations of trait `UnsafeUnpin` for type `Baz<_
30 | unsafe impl<T: Unpin, U: Unpin> UnsafeUnpin for Baz<T, U> {}
| --------------------------------------------------------- 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)

0 comments on commit d404db9

Please sign in to comment.