]> git.lizzy.rs Git - rust.git/blob - tests/ui/empty_enum_without_never_type.rs
4cbdfc47910f0afe6823fb7d55f81e5b13a8081f
[rust.git] / tests / ui / empty_enum_without_never_type.rs
1 #![allow(dead_code)]
2 #![warn(clippy::empty_enum)]
3
4 // `never_type` is not enabled; this test has no stderr file
5 enum Empty {}
6
7 fn main() {}