mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 07:00:55 +00:00
Remove unnecessary semicolon from Clippy test
This commit is contained in:
parent
88491e2a51
commit
6fd18f95ca
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ fn main() {
|
||||||
B(i32),
|
B(i32),
|
||||||
C,
|
C,
|
||||||
D,
|
D,
|
||||||
};
|
}
|
||||||
let x = E::A(2);
|
let x = E::A(2);
|
||||||
{
|
{
|
||||||
// lint
|
// lint
|
||||||
|
|
|
@ -51,7 +51,7 @@ fn main() {
|
||||||
B(i32),
|
B(i32),
|
||||||
C,
|
C,
|
||||||
D,
|
D,
|
||||||
};
|
}
|
||||||
let x = E::A(2);
|
let x = E::A(2);
|
||||||
{
|
{
|
||||||
// lint
|
// lint
|
||||||
|
|
Loading…
Reference in a new issue