Drop this
in error message to not reach 100 characters
This commit is contained in:
parent
e21d101c45
commit
2c6f84668e
@ -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 {
|
||||
|
@ -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!(),
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user