Skip to content

Commit

Permalink
Auto merge of #1897 - camelid:rustup, r=RalfJung
Browse files Browse the repository at this point in the history
rustup

cc rust-lang/rust#89612

r? `@RalfJung`
  • Loading branch information
bors committed Oct 7, 2021
2 parents f3af240 + e751c7b commit fa91a89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25ec8273855fde2d72ae877b397e054de5300e10
0157cc977fd71297ce73e2f249321f5ba2555d42
4 changes: 2 additions & 2 deletions tests/run-pass/available-concurrency.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![feature(available_concurrency)]
#![feature(available_parallelism)]

fn main() {
assert_eq!(std::thread::available_concurrency().unwrap().get(), 1);
assert_eq!(std::thread::available_parallelism().unwrap().get(), 1);
}

0 comments on commit fa91a89

Please sign in to comment.