Rustup to rustc 1.86.0-nightly (942db6782 2025-02-06)

This commit is contained in:
bjorn3 2025-02-07 20:01:00 +00:00
parent 8bbe4a022d
commit 6c4b94bf33
2 changed files with 3 additions and 3 deletions

View file

@ -36,8 +36,8 @@ index 8402833..84592e0 100644
#[cfg(not(miri))] // unused in Miri
macro_rules! empty_max_mut {
@@ -2485,6 +2486,7 @@ take_tests! {
(take_mut_oob_max_range_to_inclusive, (..=usize::MAX), None, empty_max_mut!()),
(take_mut_in_bounds_max_range_from, (usize::MAX..), Some(&mut [] as _), empty_max_mut!()),
(split_off_mut_oob_max_range_to_inclusive, (..=usize::MAX), None, empty_max_mut!()),
(split_off_mut_in_bounds_max_range_from, (usize::MAX..), Some(&mut [] as _), empty_max_mut!()),
}
+*/

View file

@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2025-02-05"
channel = "nightly-2025-02-07"
components = ["rust-src", "rustc-dev", "llvm-tools"]
profile = "minimal"