Skip to content

Commit 5b3e1be

Browse files
committed
Remove compiletest comments from tests
1 parent d17da3a commit 5b3e1be

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/test/ui/block-expression-remove-semicolon.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ error[E0308]: mismatched types
33
|
44
LL | let x: i32 = {
55
| __________________^
6-
LL | | //~^ ERROR mismatched types
7-
LL | | foo(); //~ HELP consider removing this semicolon
6+
LL | |
7+
LL | | foo();
88
| | - help: consider removing this semicolon
99
LL | | };
1010
| |_____^ expected i32, found ()

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
error[E0433]: failed to resolve: partially resolved path in a derive macro
22
--> $DIR/issue-46101.rs:3:10
33
|
4-
LL | #[derive(Foo::Anything)] //~ ERROR failed to resolve: partially resolved path in a derive macro
4+
LL | #[derive(Foo::Anything)]
55
| ^^^^^^^^^^^^^ partially resolved path in a derive macro
66

77
error[E0601]: `main` function not found in crate `issue_46101`

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

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

0 commit comments

Comments
 (0)