diff options
| author | bors <bors@rust-lang.org> | 2021-06-29 02:48:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-06-29 02:48:08 +0000 |
| commit | fecc65a19763364b8dafbbf1d23be562268bd387 (patch) | |
| tree | e9fe3e3dc3f6361c311e3fd7ad79dc5c7a39fa08 /src | |
| parent | 1ea0e283b4949a9a600824813f8b934d6d7c4cf5 (diff) | |
| parent | 7a51cf118650aa737e7aa20aeab1377aac4866c4 (diff) | |
Auto merge of #86446 - Smittyvb:rustc_insignificant_dtor-ice, r=Mark-Simulacrum
Don't make `rustc_insignificant_dtor` feature gate This isn't a feature gate, it's an attribute that is feature gated behind the `rustc_attrs` attribute. Closes #85680.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/tidy/src/features.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs index a7e700b935e..338dfd11310 100644 --- a/src/tools/tidy/src/features.rs +++ b/src/tools/tidy/src/features.rs @@ -301,6 +301,7 @@ fn collect_lang_features_in(base: &Path, file: &str, bad: &mut bool) -> Features let mut parts = line.split(','); let level = match parts.next().map(|l| l.trim().trim_start_matches('(')) { Some("active") => Status::Unstable, + Some("incomplete") => Status::Unstable, Some("removed") => Status::Removed, Some("accepted") => Status::Stable, _ => return None, |
