mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
10 lines
75 B
Rust
10 lines
75 B
Rust
|
|
|
|
|
|
#![allow(dead_code)]
|
|
#![warn(empty_enum)]
|
|
|
|
enum Empty {}
|
|
|
|
fn main() {
|
|
}
|