about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-04-09 03:32:32 +0000
committerbors <bors@rust-lang.org>2018-04-09 03:32:32 +0000
commit8ae79efce3e43eadecd032cf38b2372b4cba7b62 (patch)
tree3cc57eb3f99e83e26ab489cd7e1e6bc295891bfb /src/libsyntax
parent292685e8965eb5dcd52637e93e93ebfd67b86615 (diff)
parent521e41e77d0c9213ff3ed3f2a5e863b600ce2c3a (diff)
downloadrust-8ae79efce3e43eadecd032cf38b2372b4cba7b62.tar.gz
rust-8ae79efce3e43eadecd032cf38b2372b4cba7b62.zip
Auto merge of #49673 - ollie27:stab, r=sfackler
Correct a few stability attributes

* `const_indexing` language feature was stabilized in 1.26.0 by #46882
* `Display` impls for `PanicInfo` and `Location` were stabilized in 1.26.0 by #47687
* `TrustedLen` is still unstable so its impls should be as well even though `RangeInclusive` was stabilized by #47813
* `!Send` and `!Sync` for `Args` and `ArgsOs` were stabilized in 1.26.0 by #48005
* `EscapeDefault` has been stable since 1.0.0 so should continue to show that even though it was moved to core in #48735

This could be backported to beta like #49612
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index e1f1d95b8ab..0a3cd66d897 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -483,7 +483,7 @@ declare_features! (
     // allow empty structs and enum variants with braces
     (accepted, braced_empty_structs, "1.8.0", Some(29720), None),
     // Allows indexing into constant arrays.
-    (accepted, const_indexing, "1.24.0", Some(29947), None),
+    (accepted, const_indexing, "1.26.0", Some(29947), None),
     (accepted, default_type_params, "1.0.0", None, None),
     (accepted, globs, "1.0.0", None, None),
     (accepted, if_let, "1.0.0", None, None),