summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/issue-103435-extra-parentheses.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
commit9918693037dce8aa4bb6f08741b6812923486c18 (patch)
tree21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /tests/ui/lint/issue-103435-extra-parentheses.stderr
parentReleasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff)
downloadrustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz
rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/lint/issue-103435-extra-parentheses.stderr')
-rw-r--r--tests/ui/lint/issue-103435-extra-parentheses.stderr16
1 files changed, 5 insertions, 11 deletions
diff --git a/tests/ui/lint/issue-103435-extra-parentheses.stderr b/tests/ui/lint/issue-103435-extra-parentheses.stderr
index 29c41c910..5a166eb50 100644
--- a/tests/ui/lint/issue-103435-extra-parentheses.stderr
+++ b/tests/ui/lint/issue-103435-extra-parentheses.stderr
@@ -1,18 +1,12 @@
-error: expected one of `)`, `,`, `@`, or `|`, found keyword `in`
- --> $DIR/issue-103435-extra-parentheses.rs:15:12
- |
-LL | for(_x in 1..10){}
- | ^^ expected one of `)`, `,`, `@`, or `|`
-
error: unexpected parentheses surrounding `for` loop head
--> $DIR/issue-103435-extra-parentheses.rs:15:8
|
-LL | for(_x in 1..10){}
+LL | for(_x in 1..10) {}
| ^ ^
|
help: remove parentheses in `for` loop
|
-LL - for(_x in 1..10){}
+LL - for(_x in 1..10) {}
LL + for _x in 1..10 {}
|
@@ -48,14 +42,14 @@ LL + for _x in 1..10 {}
error: unnecessary parentheses around `if` condition
--> $DIR/issue-103435-extra-parentheses.rs:11:7
|
-LL | if(2 == 1){}
+LL | if(2 == 1) {}
| ^ ^
|
help: remove these parentheses
|
-LL - if(2 == 1){}
+LL - if(2 == 1) {}
LL + if 2 == 1 {}
|
-error: aborting due to 5 previous errors
+error: aborting due to 4 previous errors