Skip to content

Commit 701970e

Browse files
committed
fix test err
1 parent 07158ef commit 701970e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/test/ui/issues/issue-23122-2.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// normalize-stderr-test: "long-type-\d+" -> "long-type-hash"
12
trait Next {
23
type Next: Next;
34
}

src/test/ui/issues/issue-23122-2.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
error[E0275]: overflow evaluating the requirement `<<<<<<<... as Next>::Next as Next>::Next as Next>::Next as Next>::Next as Next>::Next as Next>::Next as Next>::Next: Sized`
2-
--> $DIR/issue-23122-2.rs:10:17
2+
--> $DIR/issue-23122-2.rs:11:17
33
|
44
LL | type Next = <GetNext<T::Next> as Next>::Next;
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
77
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_23122_2`)
88
note: required for `GetNext<<<<<<... as Next>::Next as Next>::Next as Next>::Next as Next>::Next as Next>::Next>` to implement `Next`
9-
--> $DIR/issue-23122-2.rs:9:15
9+
--> $DIR/issue-23122-2.rs:10:15
1010
|
1111
LL | impl<T: Next> Next for GetNext<T> {
1212
| ^^^^ ^^^^^^^^^^
13-
= note: the full type name has been written to '$TEST_BUILD_DIR/issues/issue-23122-2/issue-23122-2.long-type-3976323088118947840.txt'
13+
= note: the full type name has been written to '$TEST_BUILD_DIR/issues/issue-23122-2/issue-23122-2.long-type-hash.txt'
1414

1515
error: aborting due to previous error
1616

0 commit comments

Comments
 (0)