Skip to content

Commit 624d751

Browse files
committed
Auto merge of #1040 - RalfJung:rustup, r=RalfJung
rustup
2 parents 5dc433a + 4c25cf0 commit 624d751

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e4931eaaa3d95189b30e90d3af9f0db17c41bbb0
1+
c34472b77084c9f76f872871aeab121daf81fb99

test-cargo-miri/tests/test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@ fn entropy_rng() {
3939

4040
#[test]
4141
fn num_cpus() {
42+
#[cfg(not(windows))] // FIXME: enable on Windows again once https://github.com/seanmonstar/num_cpus/pull/90 gets released.
4243
assert_eq!(num_cpus::get(), 1);
4344
}

tests/compile-fail/validity/invalid_wide_raw.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(invalid_value)]
2+
13
fn main() {
24
trait T { }
35
#[derive(Debug)]

tests/run-pass/iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fn iter_any() {
3030
let h = |(), (), x: &u8| { 10u8 == *x };
3131
h((), (), &1u8);
3232

33-
[1, 2, 3u8].into_iter().any(|elt| 10 == *elt);
33+
[1, 2, 3u8].iter().any(|elt| 10 == *elt);
3434
}
3535

3636
fn main() {

0 commit comments

Comments
 (0)