Skip to content

Commit 0540e6f

Browse files
committed
Add guard support for replace_if_let_with_match
Example --- ```rust fn main() { if $0let true = true && true && false { code() } } ``` ```rust fn main() { match true { true if true && false => code(), _ => (), } } ```
1 parent 1f4e5e8 commit 0540e6f

File tree

1 file changed

+335
-64
lines changed

1 file changed

+335
-64
lines changed

0 commit comments

Comments
 (0)