Rustup to rustc 1.44.0-nightly (485c5fb6e 2020-04-08)

This commit is contained in:
bjorn3 2020-04-09 13:22:40 +02:00
parent 016673b0c3
commit 9cf1bcea5c
2 changed files with 3 additions and 3 deletions

View File

@ -28,16 +28,16 @@ index c9096b7..be37fcd 100644
#[test]
+#[ignore]
fn test_range_size_hint() {
use core::usize::MAX as UMAX;
assert_eq!((0..0usize).size_hint(), (0, Some(0)));
assert_eq!((0..100usize).size_hint(), (100, Some(100)));
@@ -2210,6 +2212,7 @@ fn test_range_size_hint() {
}
#[test]
+#[ignore]
fn test_range_inclusive_size_hint() {
use core::usize::MAX as UMAX;
assert_eq!((1..=0usize).size_hint(), (0, Some(0)));
assert_eq!((0..=0usize).size_hint(), (1, Some(1)));
@@ -2305,6 +2308,7 @@ fn test_repeat_with_take_collect() {
}

View File

@ -1 +1 @@
nightly-2020-04-03
nightly-2020-04-09