tidy/features: fix checking of lang features
Removes the `STATUSES` static which duplicates truth from the pattern match in `collect_lang_features`. Fixes existing duplicates by renaming: - never_type{,_impls} on `impl`s on `!` - concat_idents{,_macro} on `macro_rules! concat_idents` Fixes #37013.
This commit is contained in:
parent
7367db6fcc
commit
bef1911b15
5 changed files with 72 additions and 57 deletions
|
@ -553,7 +553,7 @@ pub mod builtin {
|
|||
/// For more information, see the documentation for [`std::concat_idents!`].
|
||||
///
|
||||
/// [`std::concat_idents!`]: ../std/macro.concat_idents.html
|
||||
#[unstable(feature = "concat_idents", issue = "29599")]
|
||||
#[unstable(feature = "concat_idents_macro", issue = "29599")]
|
||||
#[macro_export]
|
||||
macro_rules! concat_idents {
|
||||
($($e:ident),*) => ({ /* compiler built-in */ })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue