about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorAlbin Hedman <albin9604@gmail.com>2020-12-17 00:27:21 +0100
committerAlbin Hedman <albin9604@gmail.com>2020-12-17 00:27:21 +0100
commit8b3725973a696f8dd77e17127863ec56512322cb (patch)
tree19a7fa2c895b8f6908d2a49c1f206c7af226eedf /library/core/src/array
parentbaa5e47106cd3544f4eb06317eea1a174d6e2341 (diff)
downloadrust-8b3725973a696f8dd77e17127863ec56512322cb.tar.gz
rust-8b3725973a696f8dd77e17127863ec56512322cb.zip
Added reference to tracking issue
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs
index 6791f0e7444..71548bec7aa 100644
--- a/library/core/src/array/mod.rs
+++ b/library/core/src/array/mod.rs
@@ -479,7 +479,7 @@ impl<T, const N: usize> [T; N] {
     /// let z = x.zip(y);
     /// assert_eq!(z, [(1, 4), (2, 5), (3, 6)]);
     /// ```
-    #[unstable(feature = "array_zip", issue = "none")]
+    #[unstable(feature = "array_zip", issue = "80094")]
     pub fn zip<U>(self, rhs: [U; N]) -> [(T, U); N] {
         use crate::mem::MaybeUninit;