Skip to content

Commit 48c7e44

Browse files
committed
rustdoc: re-bless stderrs after renaming the test case
1 parent 061cbae commit 48c7e44

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/rustdoc-ui/associated-constant-not-allowed-102467.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0229]: associated item constraints are not allowed here
2-
--> $DIR/issue-102467.rs:7:17
2+
--> $DIR/associated-constant-not-allowed-102467.rs:7:17
33
|
44
LL | type A: S<C<X = 0i32> = 34>;
55
| ^^^^^^^^ associated item constraint not allowed here
@@ -11,7 +11,7 @@ LL + type A: S<C = 34>;
1111
|
1212

1313
error[E0229]: associated item constraints are not allowed here
14-
--> $DIR/issue-102467.rs:7:17
14+
--> $DIR/associated-constant-not-allowed-102467.rs:7:17
1515
|
1616
LL | type A: S<C<X = 0i32> = 34>;
1717
| ^^^^^^^^ associated item constraint not allowed here

tests/rustdoc-ui/private-type-cycle-dyn-110629.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0391]: cycle detected when expanding type alias `Bar`
2-
--> $DIR/issue-110629-private-type-cycle-dyn.rs:3:38
2+
--> $DIR/private-type-cycle-dyn-110629.rs:3:38
33
|
44
LL | type Bar<'a, 'b> = Box<dyn PartialEq<Bar<'a, 'b>>>;
55
| ^^^^^^^^^^^
@@ -9,7 +9,7 @@ LL | type Bar<'a, 'b> = Box<dyn PartialEq<Bar<'a, 'b>>>;
99
= help: consider using a struct, enum, or union instead to break the cycle
1010
= help: see <https://doc.rust-lang.org/reference/types.html#recursive-types> for more information
1111
note: cycle used when checking that `Bar` is well-formed
12-
--> $DIR/issue-110629-private-type-cycle-dyn.rs:3:1
12+
--> $DIR/private-type-cycle-dyn-110629.rs:3:1
1313
|
1414
LL | type Bar<'a, 'b> = Box<dyn PartialEq<Bar<'a, 'b>>>;
1515
| ^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)