about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorDing Xiang Fei <dingxiangfei2009@protonmail.ch>2024-04-12 23:24:45 +0800
committerDing Xiang Fei <dingxiangfei2009@protonmail.ch>2024-06-18 04:14:43 +0800
commit0f8c3f78825a1b6eb765b97f658b92252b55c5df (patch)
tree825b35aea3cd1ebbe53c2e9aaeec6012c30cb494 /compiler/rustc_feature/src
parent11380368dc53d0b2fc3a627408818eff1973ce9a (diff)
downloadrust-0f8c3f78825a1b6eb765b97f658b92252b55c5df.tar.gz
rust-0f8c3f78825a1b6eb765b97f658b92252b55c5df.zip
tail expression behind terminating scope
Diffstat (limited to 'compiler/rustc_feature/src')
-rw-r--r--compiler/rustc_feature/src/unstable.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index 58832cb1087..77e72b5f4fb 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -588,6 +588,8 @@ declare_features! (
     (incomplete, return_type_notation, "1.70.0", Some(109417)),
     /// Allows `extern "rust-cold"`.
     (unstable, rust_cold_cc, "1.63.0", Some(97544)),
+    /// Shortern the tail expression lifetime
+    (unstable, shorter_tail_lifetimes, "1.79.0", Some(123739)),
     /// Allows the use of SIMD types in functions declared in `extern` blocks.
     (unstable, simd_ffi, "1.0.0", Some(27731)),
     /// Allows specialization of implementations (RFC 1210).