File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -55,9 +55,10 @@ fn is_short_pattern_inner(pat: &ast::Pat) -> bool {
55
55
ast:: PatKind :: TupleStruct ( _, ref path, ref subpats) => {
56
56
path. segments . len ( ) <= 1 && subpats. len ( ) <= 1
57
57
}
58
- ast:: PatKind :: Box ( ref p) | ast:: PatKind :: Ref ( ref p, _) | ast:: PatKind :: Paren ( ref p) => {
59
- is_short_pattern_inner ( & * p)
60
- }
58
+ ast:: PatKind :: Box ( ref p)
59
+ | PatKind :: Deref ( ref p)
60
+ | ast:: PatKind :: Ref ( ref p, _)
61
+ | ast:: PatKind :: Paren ( ref p) => is_short_pattern_inner ( & * p) ,
61
62
PatKind :: Or ( ref pats) => pats. iter ( ) . all ( |p| is_short_pattern_inner ( p) ) ,
62
63
}
63
64
}
@@ -277,6 +278,7 @@ impl Rewrite for Pat {
277
278
. rewrite ( context, shape. offset_left ( 1 ) ?. sub_width ( 1 ) ?)
278
279
. map ( |inner_pat| format ! ( "({})" , inner_pat) ) ,
279
280
PatKind :: Err ( _) => None ,
281
+ PatKind :: Deref ( _) => None ,
280
282
}
281
283
}
282
284
}
You can’t perform that action at this time.
0 commit comments