mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
11 lines
112 B
Rust
11 lines
112 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![allow(dead_code)]
|
|
#![warn(empty_enum)]
|
|
|
|
enum Empty {}
|
|
|
|
fn main() {
|
|
}
|