diff options
| author | Gary Guo <gary@garyguo.net> | 2021-11-22 20:14:25 +0000 |
|---|---|---|
| committer | Gary Guo <gary@garyguo.net> | 2021-11-22 22:17:03 +0000 |
| commit | 6f38568decbab94e06e1df740b8b7a140be88e54 (patch) | |
| tree | 945b75979221192bd197248ef9a0bf9ceee96ab2 /compiler/rustc_feature | |
| parent | 6d61d87b227f2314e06f8da7c33bab9633119006 (diff) | |
`#![feature(inline_const)]` is no longer incomplete
Diffstat (limited to 'compiler/rustc_feature')
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index 34a8de67ca0..c34ecc966d0 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -409,7 +409,7 @@ declare_features! ( /// Allows associated types in inherent impls. (incomplete, inherent_associated_types, "1.52.0", Some(8995), None), /// Allow anonymous constants from an inline `const` block - (incomplete, inline_const, "1.49.0", Some(76001), None), + (active, inline_const, "1.49.0", Some(76001), None), /// Allow anonymous constants from an inline `const` block in pattern position (incomplete, inline_const_pat, "1.58.0", Some(76001), None), /// Allows using `pointer` and `reference` in intra-doc links |
