mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
8 lines
181 B
Rust
8 lines
181 B
Rust
#![allow(dead_code)]
|
|
#![warn(clippy::empty_enum)]
|
|
// Enable never type to test empty enum lint
|
|
#![feature(never_type)]
|
|
enum Empty {}
|
|
//~^ ERROR: enum with no variants
|
|
|
|
fn main() {}
|