mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
Rustup to rustc 1.44.0-nightly (485c5fb6e
2020-04-08)
This commit is contained in:
parent
016673b0c3
commit
9cf1bcea5c
@ -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() {
|
||||
}
|
||||
|
||||
|
@ -1 +1 @@
|
||||
nightly-2020-04-03
|
||||
nightly-2020-04-09
|
||||
|
Loading…
Reference in New Issue
Block a user