diff options
| author | Boxy <rust@boxyuwu.dev> | 2024-08-19 01:14:09 +0100 |
|---|---|---|
| committer | Boxy <rust@boxyuwu.dev> | 2024-08-19 01:14:22 +0100 |
| commit | b8eedfa3d217e19f806fd4f46a89b074f5e8659f (patch) | |
| tree | d6b049a54b54f6086ec0314b887ba7fcaf4c59f7 /compiler/rustc_feature/src | |
| parent | f04f6ca36d2439375d20a98be013384afbab0782 (diff) | |
| download | rust-b8eedfa3d217e19f806fd4f46a89b074f5e8659f.tar.gz rust-b8eedfa3d217e19f806fd4f46a89b074f5e8659f.zip | |
Retroactively feature gate `ConstArgKind::Path`
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/unstable.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs index 459df9ea1b8..bcb084a1cd3 100644 --- a/compiler/rustc_feature/src/unstable.rs +++ b/compiler/rustc_feature/src/unstable.rs @@ -193,6 +193,8 @@ declare_features! ( (unstable, anonymous_lifetime_in_impl_trait, "1.63.0", None), /// Allows identifying the `compiler_builtins` crate. (internal, compiler_builtins, "1.13.0", None), + /// Gating for a new desugaring of const arguments of usages of const parameters + (internal, const_arg_path, "1.81.0", None), /// Allows writing custom MIR (internal, custom_mir, "1.65.0", None), /// Outputs useful `assert!` messages |
