diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2020-12-29 17:15:53 -0500 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2020-12-29 17:16:04 -0500 |
| commit | 6bef37c8417c0357cf6ea43aba55c7ab376b2d70 (patch) | |
| tree | 67d27b78f2d1f1c8d0547e539a09c4a72783a905 | |
| parent | 4c4700d9e5da660a9322a658fd15b9401eedde3b (diff) | |
| download | rust-6bef37c8417c0357cf6ea43aba55c7ab376b2d70.tar.gz rust-6bef37c8417c0357cf6ea43aba55c7ab376b2d70.zip | |
Remove unnecessary semicolon from Clippy test
| -rw-r--r-- | src/tools/clippy/tests/ui/match_expr_like_matches_macro.fixed | 2 | ||||
| -rw-r--r-- | src/tools/clippy/tests/ui/match_expr_like_matches_macro.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/clippy/tests/ui/match_expr_like_matches_macro.fixed b/src/tools/clippy/tests/ui/match_expr_like_matches_macro.fixed index 7f4ebf56673..84981a52597 100644 --- a/src/tools/clippy/tests/ui/match_expr_like_matches_macro.fixed +++ b/src/tools/clippy/tests/ui/match_expr_like_matches_macro.fixed @@ -39,7 +39,7 @@ fn main() { B(i32), C, D, - }; + } let x = E::A(2); { // lint diff --git a/src/tools/clippy/tests/ui/match_expr_like_matches_macro.rs b/src/tools/clippy/tests/ui/match_expr_like_matches_macro.rs index aee56dd4a5e..94c7c3cadac 100644 --- a/src/tools/clippy/tests/ui/match_expr_like_matches_macro.rs +++ b/src/tools/clippy/tests/ui/match_expr_like_matches_macro.rs @@ -51,7 +51,7 @@ fn main() { B(i32), C, D, - }; + } let x = E::A(2); { // lint |
