rust/clippy_lints/src/empty_enum.rs

49 lines
1.3 KiB
Rust
Raw Normal View History

//! lint when there is an enum with no variants
use rustc::lint::*;
use rustc::hir::*;
use utils::span_lint_and_then;
/// **What it does:** Checks for `enum`s with no variants.
///
2017-08-09 02:30:56 -05:00
/// **Why is this bad?** Enum's with no variants should be replaced with `!`,
/// the uninhabited type,
/// or a wrapper around it.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// enum Test {}
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
pub EMPTY_ENUM,
2018-03-28 08:24:26 -05:00
pedantic,
"enum with no variants"
}
2017-08-09 02:30:56 -05:00
#[derive(Copy, Clone)]
pub struct EmptyEnum;
impl LintPass for EmptyEnum {
fn get_lints(&self) -> LintArray {
lint_array!(EMPTY_ENUM)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EmptyEnum {
fn check_item(&mut self, cx: &LateContext, item: &Item) {
let did = cx.tcx.hir.local_def_id(item.id);
if let ItemEnum(..) = item.node {
2017-04-27 07:00:35 -05:00
let ty = cx.tcx.type_of(did);
2017-09-05 04:33:04 -05:00
let adt = ty.ty_adt_def()
.expect("already checked whether this is an enum");
if adt.variants.is_empty() {
span_lint_and_then(cx, EMPTY_ENUM, item.span, "enum with no variants", |db| {
2017-02-05 10:51:31 -06:00
db.span_help(item.span, "consider using the uninhabited type `!` or a wrapper around it");
});
}
}
}
}