diff options
| author | joboet <jonasboettiger@icloud.com> | 2024-06-19 17:48:00 +0200 |
|---|---|---|
| committer | joboet <jonasboettiger@icloud.com> | 2024-06-19 17:48:00 +0200 |
| commit | e1aacea74dcdd53095af1618e6466ae8475458ac (patch) | |
| tree | f5e8f180b38623b706e8b40346095d8619523e68 /library/core/src/array | |
| parent | 1a8b0d7c53b62825cbe1319d6ff06e12f4dba187 (diff) | |
| download | rust-e1aacea74dcdd53095af1618e6466ae8475458ac.tar.gz rust-e1aacea74dcdd53095af1618e6466ae8475458ac.zip | |
core: add tracking issue for `array::repeat`
Diffstat (limited to 'library/core/src/array')
| -rw-r--r-- | library/core/src/array/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 63b79d5256d..3e4eadbb7c9 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -49,7 +49,7 @@ pub use iter::IntoIter; /// assert_eq!(strings, ["Hello there!", "Hello there!"]); /// ``` #[inline] -#[unstable(feature = "array_repeat", issue = "none")] +#[unstable(feature = "array_repeat", issue = "126695")] pub fn repeat<T: Clone, const N: usize>(val: T) -> [T; N] { from_trusted_iterator(repeat_n(val, N)) } |
