diff options
| author | Michael Goulet <michael@errs.io> | 2025-03-06 20:50:51 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2025-03-23 14:11:04 +0000 |
| commit | eb3707e4b49e7d19d048cf2187d6e3643be9dba2 (patch) | |
| tree | c7805bcb8ecb88c43c90e48eac1eaa6acd795850 /compiler/rustc_feature/src/accepted.rs | |
| parent | 97fc1f62d8c3f9b725b827540389a8874501c96e (diff) | |
| download | rust-eb3707e4b49e7d19d048cf2187d6e3643be9dba2.tar.gz rust-eb3707e4b49e7d19d048cf2187d6e3643be9dba2.zip | |
Stabilize precise_capturing_in_traits
Diffstat (limited to 'compiler/rustc_feature/src/accepted.rs')
| -rw-r--r-- | compiler/rustc_feature/src/accepted.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/accepted.rs b/compiler/rustc_feature/src/accepted.rs index 980f3946035..88e6593572b 100644 --- a/compiler/rustc_feature/src/accepted.rs +++ b/compiler/rustc_feature/src/accepted.rs @@ -331,6 +331,8 @@ declare_features! ( (accepted, pattern_parentheses, "1.31.0", Some(51087)), /// Allows `use<'a, 'b, A, B>` in `impl Trait + use<...>` for precise capture of generic args. (accepted, precise_capturing, "1.82.0", Some(123432)), + /// Allows `use<..>` precise capturign on impl Trait in traits. + (accepted, precise_capturing_in_traits, "CURRENT_RUSTC_VERSION", Some(130044)), /// Allows procedural macros in `proc-macro` crates. (accepted, proc_macro, "1.29.0", Some(38356)), /// Allows multi-segment paths in attributes and derives. |
