Skip to content

Commit 9cf1bce

Browse files
committed
Rustup to rustc 1.44.0-nightly (485c5fb6e 2020-04-08)
1 parent 016673b commit 9cf1bce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

patches/0023-core-Ignore-failing-tests.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ index c9096b7..be37fcd 100644
2828
#[test]
2929
+#[ignore]
3030
fn test_range_size_hint() {
31-
use core::usize::MAX as UMAX;
3231
assert_eq!((0..0usize).size_hint(), (0, Some(0)));
32+
assert_eq!((0..100usize).size_hint(), (100, Some(100)));
3333
@@ -2210,6 +2212,7 @@ fn test_range_size_hint() {
3434
}
3535

3636
#[test]
3737
+#[ignore]
3838
fn test_range_inclusive_size_hint() {
39-
use core::usize::MAX as UMAX;
4039
assert_eq!((1..=0usize).size_hint(), (0, Some(0)));
40+
assert_eq!((0..=0usize).size_hint(), (1, Some(1)));
4141
@@ -2305,6 +2308,7 @@ fn test_repeat_with_take_collect() {
4242
}
4343

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2020-04-03
1+
nightly-2020-04-09

0 commit comments

Comments
 (0)