fix tests

This commit is contained in:
Grigorii Kargin 2019-03-16 02:56:26 +03:00
parent fec0ff2ce8
commit 7f395d2b3a
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
error[E0393]: the type parameter `RHS` must be explicitly specified
error[E0393]: the type parameter `Rhs` must be explicitly specified
--> $DIR/issue-21950.rs:7:14
|
LL | &Add;
| ^^^ missing reference to `RHS`
| ^^^ missing reference to `Rhs`
|
= note: because of the default `Self` reference, type parameters must be specified on object types

View File

@ -1,16 +1,16 @@
error[E0393]: the type parameter `RHS` must be explicitly specified
error[E0393]: the type parameter `Rhs` must be explicitly specified
--> $DIR/issue-22560.rs:5:13
|
LL | type Test = Add +
| ^^^ missing reference to `RHS`
| ^^^ missing reference to `Rhs`
|
= note: because of the default `Self` reference, type parameters must be specified on object types
error[E0393]: the type parameter `RHS` must be explicitly specified
error[E0393]: the type parameter `Rhs` must be explicitly specified
--> $DIR/issue-22560.rs:8:13
|
LL | Sub;
| ^^^ missing reference to `RHS`
| ^^^ missing reference to `Rhs`
|
= note: because of the default `Self` reference, type parameters must be specified on object types