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