diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2022-06-22 22:19:02 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2022-07-13 14:17:09 +0200 |
| commit | 5a20834884f653e84485fb905785fdbca98b7e02 (patch) | |
| tree | 8c4896f7859f481058b7b3708bae43a4a69d71fa /compiler/rustc_feature/src/active.rs | |
| parent | 3b1b38d17f223378386f768204e4c5ad106b7c50 (diff) | |
| download | rust-5a20834884f653e84485fb905785fdbca98b7e02.tar.gz rust-5a20834884f653e84485fb905785fdbca98b7e02.zip | |
Add feature gate.
Diffstat (limited to 'compiler/rustc_feature/src/active.rs')
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index b54f0ef361a..d210b9493d1 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -148,6 +148,8 @@ declare_features! ( /// below (it has to be checked before expansion possibly makes /// macros disappear). (active, allow_internal_unstable, "1.0.0", None, None), + /// Allows using anonymous lifetimes in argument-position impl-trait. + (active, anonymous_lifetime_in_impl_trait, "1.63.0", None, None), /// Allows identifying the `compiler_builtins` crate. (active, compiler_builtins, "1.13.0", None, None), /// Outputs useful `assert!` messages |
