Skip to content

Commit

Permalink
Remove unnecessary trailing semicolons from clippy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Jul 29, 2021
1 parent 6954f9d commit e70ce57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tools/clippy/tests/ui/needless_borrow_pat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
fn f1(_: &str) {}
macro_rules! m1 {
($e:expr) => {
f1($e);
f1($e)
};
}
macro_rules! m3 {
Expand Down
2 changes: 1 addition & 1 deletion src/tools/clippy/tests/ui/ref_binding_to_reference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
fn f1(_: &str) {}
macro_rules! m2 {
($e:expr) => {
f1(*$e);
f1(*$e)
};
}
macro_rules! m3 {
Expand Down

0 comments on commit e70ce57

Please sign in to comment.