mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
5013f49195
Cleaning the empty lines for clarity.
10 lines
112 B
Rust
10 lines
112 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![allow(dead_code)]
|
|
#![deny(empty_enum)]
|
|
|
|
enum Empty {}
|
|
|
|
fn main() {
|
|
}
|