]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/unused_parens_remove_json_suggestion.stderr
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[rust.git] / tests / ui / lint / unused_parens_remove_json_suggestion.stderr
1 {"message":"unnecessary parentheses around `if` condition","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":481,"byte_end":482,"line_start":17,"line_end":17,"column_start":8,"column_end":9,"is_primary":true,"text":[{"text":"    if (_b) {
2   --> $DIR/unused_parens_remove_json_suggestion.rs:17:8
3    |
4 LL |     if (_b) {
5    |        ^  ^
6    |
7 note: the lint level is defined here
8   --> $DIR/unused_parens_remove_json_suggestion.rs:10:9
9    |
10 LL | #![deny(unused_parens)]
11    |         ^^^^^^^^^^^^^
12 help: remove these parentheses
13    |
14 LL -     if (_b) {
15 LL +     if _b {
16    |
17
18 "}
19 {"message":"unnecessary parentheses around `if` condition","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":612,"byte_end":613,"line_start":28,"line_end":28,"column_start":7,"column_end":8,"is_primary":true,"text":[{"text":"    if(c) {
20   --> $DIR/unused_parens_remove_json_suggestion.rs:28:7
21    |
22 LL |     if(c) {
23    |       ^ ^
24    |
25 help: remove these parentheses
26    |
27 LL -     if(c) {
28 LL +     if c {
29    |
30
31 "}
32 {"message":"unnecessary parentheses around `if` condition","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":692,"byte_end":693,"line_start":32,"line_end":32,"column_start":8,"column_end":9,"is_primary":true,"text":[{"text":"    if (c){
33   --> $DIR/unused_parens_remove_json_suggestion.rs:32:8
34    |
35 LL |     if (c){
36    |        ^ ^
37    |
38 help: remove these parentheses
39    |
40 LL -     if (c){
41 LL +     if c {
42    |
43
44 "}
45 {"message":"unnecessary parentheses around `while` condition","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":774,"byte_end":775,"line_start":36,"line_end":36,"column_start":11,"column_end":12,"is_primary":true,"text":[{"text":"    while (false && true){","highlight_start":11,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":788,"byte_end":789,"line_start":36,"line_end":36,"column_start":25,"column_end":26,"is_primary":true,"text":[{"text":"    while (false && true){","highlight_start":25,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove these parentheses","code":null,"level":"help","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":774,"byte_end":775,"line_start":36,"line_end":36,"column_start":11,"column_end":12,"is_primary":true,"text":[{"text":"    while (false && true){","highlight_start":11,"highlight_end":12}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":788,"byte_end":789,"line_start":36,"line_end":36,"column_start":25,"column_end":26,"is_primary":true,"text":[{"text":"    while (false && true){","highlight_start":25,"highlight_end":26}],"label":null,"suggested_replacement":" ","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"error: unnecessary parentheses around `while` condition
46   --> $DIR/unused_parens_remove_json_suggestion.rs:36:11
47    |
48 LL |     while (false && true){
49    |           ^             ^
50    |
51 help: remove these parentheses
52    |
53 LL -     while (false && true){
54 LL +     while false && true {
55    |
56
57 "}
58 {"message":"unnecessary parentheses around `if` condition","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":802,"byte_end":803,"line_start":37,"line_end":37,"column_start":12,"column_end":13,"is_primary":true,"text":[{"text":"        if (c) {
59   --> $DIR/unused_parens_remove_json_suggestion.rs:37:12
60    |
61 LL |         if (c) {
62    |            ^ ^
63    |
64 help: remove these parentheses
65    |
66 LL -         if (c) {
67 LL +         if c {
68    |
69
70 "}
71 {"message":"unnecessary parentheses around `while` condition","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":899,"byte_end":900,"line_start":43,"line_end":43,"column_start":10,"column_end":11,"is_primary":true,"text":[{"text":"    while(true && false) {
72   --> $DIR/unused_parens_remove_json_suggestion.rs:43:10
73    |
74 LL |     while(true && false) {
75    |          ^             ^
76    |
77 help: remove these parentheses
78    |
79 LL -     while(true && false) {
80 LL +     while true && false {
81    |
82
83 "}
84 {"message":"unnecessary parentheses around `for` iterator expression","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":968,"byte_end":969,"line_start":44,"line_end":44,"column_start":18,"column_end":19,"is_primary":true,"text":[{"text":"        for _ in (0 .. 3){
85   --> $DIR/unused_parens_remove_json_suggestion.rs:44:18
86    |
87 LL |         for _ in (0 .. 3){
88    |                  ^      ^
89    |
90 help: remove these parentheses
91    |
92 LL -         for _ in (0 .. 3){
93 LL +         for _ in 0 .. 3 {
94    |
95
96 "}
97 {"message":"unnecessary parentheses around `for` iterator expression","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":1069,"byte_end":1070,"line_start":49,"line_end":49,"column_start":14,"column_end":15,"is_primary":true,"text":[{"text":"    for _ in (0 .. 3) {
98   --> $DIR/unused_parens_remove_json_suggestion.rs:49:14
99    |
100 LL |     for _ in (0 .. 3) {
101    |              ^      ^
102    |
103 help: remove these parentheses
104    |
105 LL -     for _ in (0 .. 3) {
106 LL +     for _ in 0 .. 3 {
107    |
108
109 "}
110 {"message":"unnecessary parentheses around `while` condition","code":{"code":"unused_parens","explanation":null},"level":"error","spans":[{"file_name":"$DIR/unused_parens_remove_json_suggestion.rs","byte_start":1128,"byte_end":1129,"line_start":50,"line_end":50,"column_start":15,"column_end":16,"is_primary":true,"text":[{"text":"        while (true && false) {
111   --> $DIR/unused_parens_remove_json_suggestion.rs:50:15
112    |
113 LL |         while (true && false) {
114    |               ^             ^
115    |
116 help: remove these parentheses
117    |
118 LL -         while (true && false) {
119 LL +         while true && false {
120    |
121
122 "}
123 {"message":"aborting due to 9 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"error: aborting due to 9 previous errors
124
125 "}