Skip to content

Commit

Permalink
rustdoc: re-bless stderrs after renaming the test case
Browse files Browse the repository at this point in the history
  • Loading branch information
notriddle committed Sep 12, 2024
1 parent 061cbae commit 48c7e44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error[E0229]: associated item constraints are not allowed here
--> $DIR/issue-102467.rs:7:17
--> $DIR/associated-constant-not-allowed-102467.rs:7:17
|
LL | type A: S<C<X = 0i32> = 34>;
| ^^^^^^^^ associated item constraint not allowed here
Expand All @@ -11,7 +11,7 @@ LL + type A: S<C = 34>;
|

error[E0229]: associated item constraints are not allowed here
--> $DIR/issue-102467.rs:7:17
--> $DIR/associated-constant-not-allowed-102467.rs:7:17
|
LL | type A: S<C<X = 0i32> = 34>;
| ^^^^^^^^ associated item constraint not allowed here
Expand Down
4 changes: 2 additions & 2 deletions tests/rustdoc-ui/private-type-cycle-dyn-110629.stderr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error[E0391]: cycle detected when expanding type alias `Bar`
--> $DIR/issue-110629-private-type-cycle-dyn.rs:3:38
--> $DIR/private-type-cycle-dyn-110629.rs:3:38
|
LL | type Bar<'a, 'b> = Box<dyn PartialEq<Bar<'a, 'b>>>;
| ^^^^^^^^^^^
Expand All @@ -9,7 +9,7 @@ LL | type Bar<'a, 'b> = Box<dyn PartialEq<Bar<'a, 'b>>>;
= help: consider using a struct, enum, or union instead to break the cycle
= help: see <https://doc.rust-lang.org/reference/types.html#recursive-types> for more information
note: cycle used when checking that `Bar` is well-formed
--> $DIR/issue-110629-private-type-cycle-dyn.rs:3:1
--> $DIR/private-type-cycle-dyn-110629.rs:3:1
|
LL | type Bar<'a, 'b> = Box<dyn PartialEq<Bar<'a, 'b>>>;
| ^^^^^^^^^^^^^^^^
Expand Down

0 comments on commit 48c7e44

Please sign in to comment.