about summary refs log tree commit diff
diff options
context:
space:
mode:
authorltdk <usr@ltdk.xyz>2022-08-19 20:38:32 -0400
committerltdk <usr@ltdk.xyz>2022-08-19 20:38:32 -0400
commitae2b1dbc8915c2a41bc3555cceb65a07c0032b05 (patch)
tree45b39ddbc31ae9e8e2827588ce19b465cf2a9ce7
parent5e1730fd17145fd9db5c042b127e2f400c83738a (diff)
Tracking issue for const_reverse
-rw-r--r--library/core/src/slice/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs
index 361862cdd52..75c7c4d5581 100644
--- a/library/core/src/slice/mod.rs
+++ b/library/core/src/slice/mod.rs
@@ -674,7 +674,7 @@ impl<T> [T] {
     /// assert!(v == [3, 2, 1]);
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]
-    #[rustc_const_unstable(feature = "const_reverse", issue = "none")]
+    #[rustc_const_unstable(feature = "const_reverse", issue = "100784")]
     #[inline]
     pub const fn reverse(&mut self) {
         let half_len = self.len() / 2;