mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 09:13:07 +03: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() {
|
|
}
|