2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-01-04 09:18:44 +00:00
rust-clippy/tests/ui/empty_enum.rs

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() {}