diff options
| author | Noah Lev <camelidcamel@gmail.com> | 2024-11-19 05:01:59 +0000 |
|---|---|---|
| committer | Boxy <rust@boxyuwu.dev> | 2024-11-19 05:07:43 +0000 |
| commit | 59e339f76658bd8bd55f7514c95ffb5f39c94227 (patch) | |
| tree | 9b5242c424017271592c6d53cb4557cff5502375 /compiler/rustc_feature/src | |
| parent | b71fb5edc0217eaf8fc824a44cd7b0945e29ff4d (diff) | |
| download | rust-59e339f76658bd8bd55f7514c95ffb5f39c94227.tar.gz rust-59e339f76658bd8bd55f7514c95ffb5f39c94227.zip | |
Introduce `min_generic_const_args` and directly represent paths
Co-authored-by: Boxy UwU <rust@boxyuwu.dev> Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
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 a67a5776449..2acebebb419 100644 --- a/compiler/rustc_feature/src/unstable.rs +++ b/compiler/rustc_feature/src/unstable.rs @@ -529,6 +529,8 @@ declare_features! ( (unstable, macro_metavar_expr_concat, "1.81.0", Some(124225)), /// Allows `#[marker]` on certain traits allowing overlapping implementations. (unstable, marker_trait_attr, "1.30.0", Some(29864)), + /// Enables the generic const args MVP (only bare paths, not arbitrary computation). + (incomplete, min_generic_const_args, "CURRENT_RUSTC_VERSION", Some(132980)), /// A minimal, sound subset of specialization intended to be used by the /// standard library until the soundness issues with specialization /// are fixed. |
