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