File tree 5 files changed +26
-24
lines changed
5 files changed +26
-24
lines changed Original file line number Diff line number Diff line change @@ -481,25 +481,27 @@ trait UnusedDelimLint {
481
481
let mut err = lint. build ( & span_msg) ;
482
482
let mut ate_left_paren = false ;
483
483
let mut ate_right_paren = false ;
484
- let parens_removed = pattern. trim_matches ( |c| match c {
485
- '(' | '{' => {
486
- if ate_left_paren {
487
- false
488
- } else {
489
- ate_left_paren = true ;
490
- true
484
+ let parens_removed = pattern
485
+ . trim_matches ( |c| match c {
486
+ '(' | '{' => {
487
+ if ate_left_paren {
488
+ false
489
+ } else {
490
+ ate_left_paren = true ;
491
+ true
492
+ }
491
493
}
492
- }
493
- ')' | '}' => {
494
- if ate_right_paren {
495
- false
496
- } else {
497
- ate_right_paren = true ;
498
- true
494
+ ')' | '}' => {
495
+ if ate_right_paren {
496
+ false
497
+ } else {
498
+ ate_right_paren = true ;
499
+ true
500
+ }
499
501
}
500
- }
501
- _ => false ,
502
- } ) ;
502
+ _ => false ,
503
+ } )
504
+ . trim ( ) ;
503
505
504
506
let replace = {
505
507
let mut replace = if keep_space. 0 {
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ struct A<const N: usize>;
10
10
11
11
fn main() {
12
12
let _: A<7>; // ok
13
- let _: A< 7 >; //~ WARN unnecessary braces
13
+ let _: A<7 >; //~ WARN unnecessary braces
14
14
let _: A<{ 3 + 5 }>; // ok
15
15
}
Original file line number Diff line number Diff line change @@ -23,18 +23,18 @@ fn main() {
23
23
}
24
24
}
25
25
26
- if true {
26
+ if true {
27
27
//~^ WARN unnecessary braces
28
28
}
29
29
30
- while false {
30
+ while false {
31
31
//~^ WARN unnecessary braces
32
32
}
33
33
34
- let _: [u8; 3 ];
34
+ let _: [u8; 3 ];
35
35
//~^ WARN unnecessary braces
36
36
37
- consume( 7 );
37
+ consume(7 );
38
38
//~^ WARN unnecessary braces
39
39
40
40
// Do not emit lint for multiline blocks.
Original file line number Diff line number Diff line change @@ -21,6 +21,6 @@ fn main() {
21
21
};
22
22
23
23
consume(&{ a.b });
24
- consume( a.b );
24
+ consume(a.b);
25
25
//~^ WARN unnecessary braces
26
26
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ fn main() {
11
11
consume(try {});
12
12
//~^ WARN unnecessary parentheses
13
13
14
- consume( try {} );
14
+ consume(try {});
15
15
//~^ WARN unnecessary braces
16
16
17
17
match try {} {
You can’t perform that action at this time.
0 commit comments