mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
7 lines
147 B
Rust
7 lines
147 B
Rust
#![allow(dead_code)]
|
|
#![warn(clippy::empty_enum)]
|
|
// Enable never type to test empty enum lint
|
|
#![feature(never_type)]
|
|
enum Empty {}
|
|
|
|
fn main() {}
|