Drop this in error message to not reach 100 characters

This commit is contained in:
Kevin Per 2020-04-04 08:01:42 +00:00
parent e21d101c45
commit 2c6f84668e
3 changed files with 3 additions and 3 deletions

View File

@ -246,7 +246,7 @@ fn parse_token_tree(&mut self) -> PResult<'a, TreeAndJoint> {
if (parent.0.to(parent.1)).contains(span) {
err.span_label(
span,
"this block is empty, you might have not meant to close it",
"block is empty, you might have not meant to close it",
);
}
else {

View File

@ -7,7 +7,7 @@ impl ErrorHandled {
pub fn assert_reported(self) {
match self {
ErrorHandled::Reported => {}}
//^~ ERROR this block is empty, you might have not meant to close it
//^~ ERROR block is empty, you might have not meant to close it
ErrorHandled::TooGeneric => panic!(),
}
}

View File

@ -2,7 +2,7 @@ error: unexpected closing delimiter: `}`
--> $DIR/issue-70583-block-is-empty-2.rs:14:1
|
LL | ErrorHandled::Reported => {}}
| -- this block is empty, you might have not meant to close it
| -- block is empty, you might have not meant to close it
...
LL | }
| ^ unexpected closing delimiter