Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dd7c901

Browse files
committedJun 19, 2024
core: add tracking issue for array::repeat
1 parent 5ddeaca commit dd7c901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/src/array/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub use iter::IntoIter;
4949
/// assert_eq!(strings, ["Hello there!", "Hello there!"]);
5050
/// ```
5151
#[inline]
52-
#[unstable(feature = "array_repeat", issue = "none")]
52+
#[unstable(feature = "array_repeat", issue = "126695")]
5353
pub fn repeat<T: Clone, const N: usize>(val: T) -> [T; N] {
5454
from_trusted_iterator(repeat_n(val, N))
5555
}

0 commit comments

Comments
 (0)
Failed to load comments.