2017-02-05 04:07:54 +00:00
|
|
|
//! lint when there is an enum with no variants
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_help;
|
2020-02-21 08:39:38 +00:00
|
|
|
use rustc_hir::{Item, ItemKind};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2017-02-05 04:07:54 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `enum`s with no variants.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-01-15 09:56:44 +00:00
|
|
|
/// As of this writing, the `never_type` is still a
|
|
|
|
/// nightly-only experimental API. Therefore, this lint is only triggered
|
|
|
|
/// if the `never_type` is enabled.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// If you want to introduce a type which
|
2021-01-15 09:56:44 +00:00
|
|
|
/// can't be instantiated, you should use `!` (the primitive type "never"),
|
2020-01-24 11:37:16 +00:00
|
|
|
/// or a wrapper around it, because `!` has more extensive
|
|
|
|
/// compiler support (type inference, etc...) and wrappers
|
|
|
|
/// around it are the conventional way to define an uninhabited type.
|
|
|
|
/// For further information visit [never type documentation](https://doc.rust-lang.org/std/primitive.never.html)
|
|
|
|
///
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```rust
|
|
|
|
/// enum Test {}
|
|
|
|
/// ```
|
2020-01-24 11:37:16 +00:00
|
|
|
///
|
2022-06-04 11:34:07 +00:00
|
|
|
/// Use instead:
|
2020-01-24 11:37:16 +00:00
|
|
|
/// ```rust
|
|
|
|
/// #![feature(never_type)]
|
|
|
|
///
|
|
|
|
/// struct Test(!);
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-02-05 04:07:54 +00:00
|
|
|
pub EMPTY_ENUM,
|
2018-03-28 13:24:26 +00:00
|
|
|
pedantic,
|
2017-02-05 04:07:54 +00:00
|
|
|
"enum with no variants"
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(EmptyEnum => [EMPTY_ENUM]);
|
2017-02-05 04:07:54 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for EmptyEnum {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'_>, item: &Item<'_>) {
|
2021-01-15 09:56:44 +00:00
|
|
|
// Only suggest the `never_type` if the feature is enabled
|
|
|
|
if !cx.tcx.features().never_type {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
if let ItemKind::Enum(..) = item.kind {
|
2022-10-27 03:02:18 +00:00
|
|
|
let ty = cx.tcx.type_of(item.owner_id);
|
2018-11-27 20:14:15 +00:00
|
|
|
let adt = ty.ty_adt_def().expect("already checked whether this is an enum");
|
2022-03-04 20:28:41 +00:00
|
|
|
if adt.variants().is_empty() {
|
2020-04-18 10:28:29 +00:00
|
|
|
span_lint_and_help(
|
2020-04-17 14:01:25 +00:00
|
|
|
cx,
|
|
|
|
EMPTY_ENUM,
|
|
|
|
item.span,
|
|
|
|
"enum with no variants",
|
2020-04-19 18:38:07 +00:00
|
|
|
None,
|
2020-04-18 10:28:29 +00:00
|
|
|
"consider using the uninhabited type `!` (never type) or a wrapper \
|
|
|
|
around it to introduce a type which can't be instantiated",
|
2020-04-17 14:01:25 +00:00
|
|
|
);
|
2017-02-05 04:07:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|