Remove unnecessary trailing semicolons from clippy tests
This commit is contained in:
parent
1270ed0aaf
commit
967a72196c
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
fn f1(_: &str) {}
|
||||
macro_rules! m1 {
|
||||
($e:expr) => {
|
||||
f1($e);
|
||||
f1($e)
|
||||
};
|
||||
}
|
||||
macro_rules! m3 {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
fn f1(_: &str) {}
|
||||
macro_rules! m2 {
|
||||
($e:expr) => {
|
||||
f1(*$e);
|
||||
f1(*$e)
|
||||
};
|
||||
}
|
||||
macro_rules! m3 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue