mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
16 lines
290 B
Rust
16 lines
290 B
Rust
// rustfmt-version: One
|
|
|
|
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(),
|
|
);
|
|
}
|