diff options
| author | Kevin Per <kevin.per@protonmail.com> | 2020-04-04 08:01:42 +0000 |
|---|---|---|
| committer | Kevin Per <kevin.per@protonmail.com> | 2020-04-04 08:03:54 +0000 |
| commit | 2c6f84668e9f985aff261d317d3188d053ca29d1 (patch) | |
| tree | dbb2f914998e6f28de0b25191bf0a299c8f94f4a /src/test/ui/parser | |
| parent | e21d101c45022ab34d5ad10605a16d6ce8116c94 (diff) | |
| download | rust-2c6f84668e9f985aff261d317d3188d053ca29d1.tar.gz rust-2c6f84668e9f985aff261d317d3188d053ca29d1.zip | |
Drop `this` in error message to not reach 100 characters
Diffstat (limited to 'src/test/ui/parser')
| -rw-r--r-- | src/test/ui/parser/issue-70583-block-is-empty-2.rs | 2 | ||||
| -rw-r--r-- | src/test/ui/parser/issue-70583-block-is-empty-2.stderr | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/parser/issue-70583-block-is-empty-2.rs b/src/test/ui/parser/issue-70583-block-is-empty-2.rs index 4764d71936b..80f53338a68 100644 --- a/src/test/ui/parser/issue-70583-block-is-empty-2.rs +++ b/src/test/ui/parser/issue-70583-block-is-empty-2.rs @@ -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!(), } } diff --git a/src/test/ui/parser/issue-70583-block-is-empty-2.stderr b/src/test/ui/parser/issue-70583-block-is-empty-2.stderr index 9511d9847fb..5d37b216427 100644 --- a/src/test/ui/parser/issue-70583-block-is-empty-2.stderr +++ b/src/test/ui/parser/issue-70583-block-is-empty-2.stderr @@ -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 |
