]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/empty_enum_without_never_type.rs
Merge commit '70c0f90453701e7d6d9b99aaa1fc6a765937b736' into clippyup
[rust.git] / src / tools / clippy / 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() {}