diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-07-14 11:04:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-14 11:04:55 +0200 |
| commit | a7ad680269cc250d87f584ce84c40f7f90dc7159 (patch) | |
| tree | e88090d099dcec45943748b83b7e0cf1a0be3b78 /library/core/src/slice | |
| parent | 2ec48e0489b3e6bfdf3916ab8dca246bc786bdb6 (diff) | |
| parent | 6b02597ed3dc7a7c3581960ca6afae575f6c691e (diff) | |
Rollup merge of #143875 - fee1-dead-contrib:push-zvqrmzrprpzt, r=compiler-errors
update issue number for `const_trait_impl` r? project-const-traits cc rust-lang/rust#67792 rust-lang/rust#143874
Diffstat (limited to 'library/core/src/slice')
| -rw-r--r-- | library/core/src/slice/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs index 58b7e9a9fdf..abcba5a621e 100644 --- a/library/core/src/slice/mod.rs +++ b/library/core/src/slice/mod.rs @@ -5192,7 +5192,7 @@ where } #[stable(feature = "rust1", since = "1.0.0")] -#[rustc_const_unstable(feature = "const_default", issue = "67792")] +#[rustc_const_unstable(feature = "const_default", issue = "143894")] impl<T> const Default for &[T] { /// Creates an empty slice. fn default() -> Self { @@ -5201,7 +5201,7 @@ impl<T> const Default for &[T] { } #[stable(feature = "mut_slice_default", since = "1.5.0")] -#[rustc_const_unstable(feature = "const_default", issue = "67792")] +#[rustc_const_unstable(feature = "const_default", issue = "143894")] impl<T> const Default for &mut [T] { /// Creates a mutable empty slice. fn default() -> Self { |
