Remove unnecessary trailing semicolons from clippy tests

This commit is contained in:
Aaron Hill 2021-07-29 09:52:35 -05:00
parent 6954f9d4f2
commit e70ce57f30
No known key found for this signature in database
GPG Key ID: B4087E510E98B164
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
fn f1(_: &str) {}
macro_rules! m1 {
($e:expr) => {
f1($e);
f1($e)
};
}
macro_rules! m3 {

View File

@ -7,7 +7,7 @@
fn f1(_: &str) {}
macro_rules! m2 {
($e:expr) => {
f1(*$e);
f1(*$e)
};
}
macro_rules! m3 {