summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_enum.rs
blob: 77357c15d957fa3ec32e0d08ee7810011b7c75d1 (plain)
1
2
3
4
5
6
7
8
#![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() {}