diff options
| author | Michael Howell <michael@notriddle.com> | 2024-09-12 13:48:51 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2024-09-12 13:48:51 -0700 |
| commit | 48c7e444b15823342e8482a7c6590bca6d83e691 (patch) | |
| tree | b64c00f231e5be419f4da1546ccb532d9c647755 | |
| parent | 061cbae7c9a101c81b132cf411117bf089c832bd (diff) | |
| download | rust-48c7e444b15823342e8482a7c6590bca6d83e691.tar.gz rust-48c7e444b15823342e8482a7c6590bca6d83e691.zip | |
rustdoc: re-bless stderrs after renaming the test case
| -rw-r--r-- | tests/rustdoc-ui/associated-constant-not-allowed-102467.stderr | 4 | ||||
| -rw-r--r-- | tests/rustdoc-ui/private-type-cycle-dyn-110629.stderr | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/rustdoc-ui/associated-constant-not-allowed-102467.stderr b/tests/rustdoc-ui/associated-constant-not-allowed-102467.stderr index 5fcdba782e7..5c8f08afe7a 100644 --- a/tests/rustdoc-ui/associated-constant-not-allowed-102467.stderr +++ b/tests/rustdoc-ui/associated-constant-not-allowed-102467.stderr @@ -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 @@ -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 diff --git a/tests/rustdoc-ui/private-type-cycle-dyn-110629.stderr b/tests/rustdoc-ui/private-type-cycle-dyn-110629.stderr index b19e4a245f1..6ee7e4b781c 100644 --- a/tests/rustdoc-ui/private-type-cycle-dyn-110629.stderr +++ b/tests/rustdoc-ui/private-type-cycle-dyn-110629.stderr @@ -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>>>; | ^^^^^^^^^^^ @@ -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>>>; | ^^^^^^^^^^^^^^^^ |
