mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-27 07:03:45 +00:00
12 lines
113 B
Rust
12 lines
113 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![allow(dead_code)]
|
|
#![deny(empty_enum)]
|
|
|
|
enum Empty {}
|
|
|
|
|
|
fn main() {
|
|
}
|