mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
18 lines
304 B
Rust
18 lines
304 B
Rust
// rustfmt-version: Two
|
|
|
|
fn main() {
|
|
assert!(
|
|
HAYSTACK
|
|
.par_iter()
|
|
.find_any(|&&x| x[0] % 1000 == 999)
|
|
.is_some()
|
|
);
|
|
|
|
assert(
|
|
HAYSTACK
|
|
.par_iter()
|
|
.find_any(|&&x| x[0] % 1000 == 999)
|
|
.is_some(),
|
|
);
|
|
}
|