Skip to content

Commit ade4308

Browse files
committed
tests: Update ui test output to nightly-2026-01-22
1 parent a9ec64e commit ade4308

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

tests/ui/pin_project/project_replace_unsized.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ note: required because it appears within the type `Struct<T>`
7777
|
7878
6 | struct Struct<T: ?Sized> {
7979
| ^^^^^^
80-
note: required by an implicit `Sized` bound in `UnsafeOverwriteGuard`
80+
note: required by an implicit `Sized` bound in `_::_pin_project::__private::UnsafeOverwriteGuard`
8181
--> src/lib.rs
8282
|
8383
| pub struct UnsafeOverwriteGuard<T> {
@@ -147,7 +147,7 @@ note: required because it appears within the type `TupleStruct<T>`
147147
|
148148
11 | struct TupleStruct<T: ?Sized>(T);
149149
| ^^^^^^^^^^^
150-
note: required by an implicit `Sized` bound in `UnsafeOverwriteGuard`
150+
note: required by an implicit `Sized` bound in `_::_pin_project::__private::UnsafeOverwriteGuard`
151151
--> src/lib.rs
152152
|
153153
| pub struct UnsafeOverwriteGuard<T> {

tests/ui/pin_project/project_replace_unsized_fn_params.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ note: required because it appears within the type `Struct<T>`
5353
|
5454
9 | struct Struct<T: ?Sized> {
5555
| ^^^^^^
56-
note: required by an implicit `Sized` bound in `UnsafeOverwriteGuard`
56+
note: required by an implicit `Sized` bound in `_::_pin_project::__private::UnsafeOverwriteGuard`
5757
--> src/lib.rs
5858
|
5959
| pub struct UnsafeOverwriteGuard<T> {
@@ -99,7 +99,7 @@ note: required because it appears within the type `TupleStruct<T>`
9999
|
100100
14 | struct TupleStruct<T: ?Sized>(T);
101101
| ^^^^^^^^^^^
102-
note: required by an implicit `Sized` bound in `UnsafeOverwriteGuard`
102+
note: required by an implicit `Sized` bound in `_::_pin_project::__private::UnsafeOverwriteGuard`
103103
--> src/lib.rs
104104
|
105105
| pub struct UnsafeOverwriteGuard<T> {

tests/ui/pinned_drop/conditional-drop-impl.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ error[E0277]: `T` cannot be unpinned
1818
|
1919
= note: consider using the `pin!` macro
2020
consider using `Box::pin` if you need to access the pinned value outside of the current scope
21-
note: required for `PinnedDropImpl<T>` to implement `PinnedDrop`
21+
note: required for `PinnedDropImpl<T>` to implement `_pin_project::__private::PinnedDrop`
2222
--> tests/ui/pinned_drop/conditional-drop-impl.rs:25:16
2323
|
2424
24 | #[pinned_drop]

tests/ui/pinned_drop/forget-pinned-drop-impl.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error[E0277]: the trait bound `Struct: PinnedDrop` is not satisfied
1+
error[E0277]: the trait bound `Struct: _pin_project::__private::PinnedDrop` is not satisfied
22
--> tests/ui/pinned_drop/forget-pinned-drop-impl.rs:5:15
33
|
44
5 | #[pin_project(PinnedDrop)] //~ ERROR E0277
55
| ^^^^^^^^^^ unsatisfied trait bound
66
|
7-
help: the trait `PinnedDrop` is not implemented for `Struct`
7+
help: the trait `_pin_project::__private::PinnedDrop` is not implemented for `Struct`
88
--> tests/ui/pinned_drop/forget-pinned-drop-impl.rs:6:1
99
|
1010
6 | struct Struct {

tests/ui/pinned_drop/pinned-drop-no-attr-arg.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0119]: conflicting implementations of trait `PinnedDrop` for type `S`
1+
error[E0119]: conflicting implementations of trait `_pin_project::__private::PinnedDrop` for type `S`
22
--> tests/ui/pinned_drop/pinned-drop-no-attr-arg.rs:14:1
33
|
44
7 | #[pin_project]

0 commit comments

Comments
 (0)