Remove compiletest comments from tests

This commit is contained in:
varkor 2019-03-12 19:06:13 +00:00
parent d17da3a17e
commit 5b3e1be724
3 changed files with 4 additions and 4 deletions

View file

@ -3,8 +3,8 @@ error[E0308]: mismatched types
|
LL | let x: i32 = {
| __________________^
LL | | //~^ ERROR mismatched types
LL | | foo(); //~ HELP consider removing this semicolon
LL | |
LL | | foo();
| | - help: consider removing this semicolon
LL | | };
| |_____^ expected i32, found ()

View file

@ -1,7 +1,7 @@
error[E0433]: failed to resolve: partially resolved path in a derive macro
--> $DIR/issue-46101.rs:3:10
|
LL | #[derive(Foo::Anything)] //~ ERROR failed to resolve: partially resolved path in a derive macro
LL | #[derive(Foo::Anything)]
| ^^^^^^^^^^^^^ partially resolved path in a derive macro
error[E0601]: `main` function not found in crate `issue_46101`

View file

@ -1,7 +1,7 @@
error: implementation of `DistributedIteratorMulti` is not general enough
--> $DIR/issue-55731.rs:48:5
|
LL | multi(Map { //~ ERROR implementation of `DistributedIteratorMulti` is not general enough
LL | multi(Map {
| ^^^^^
|
= note: `DistributedIteratorMulti<&'0 ()>` would have to be implemented for the type `Cloned<&()>`, for any lifetime `'0`