Skip to content

Commit 7f395d2

Browse files
committed
fix tests
1 parent fec0ff2 commit 7f395d2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/test/ui/issues/issue-21950.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
error[E0393]: the type parameter `RHS` must be explicitly specified
1+
error[E0393]: the type parameter `Rhs` must be explicitly specified
22
--> $DIR/issue-21950.rs:7:14
33
|
44
LL | &Add;
5-
| ^^^ missing reference to `RHS`
5+
| ^^^ missing reference to `Rhs`
66
|
77
= note: because of the default `Self` reference, type parameters must be specified on object types
88

src/test/ui/issues/issue-22560.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
error[E0393]: the type parameter `RHS` must be explicitly specified
1+
error[E0393]: the type parameter `Rhs` must be explicitly specified
22
--> $DIR/issue-22560.rs:5:13
33
|
44
LL | type Test = Add +
5-
| ^^^ missing reference to `RHS`
5+
| ^^^ missing reference to `Rhs`
66
|
77
= note: because of the default `Self` reference, type parameters must be specified on object types
88

9-
error[E0393]: the type parameter `RHS` must be explicitly specified
9+
error[E0393]: the type parameter `Rhs` must be explicitly specified
1010
--> $DIR/issue-22560.rs:8:13
1111
|
1212
LL | Sub;
13-
| ^^^ missing reference to `RHS`
13+
| ^^^ missing reference to `Rhs`
1414
|
1515
= note: because of the default `Self` reference, type parameters must be specified on object types
1616

0 commit comments

Comments
 (0)