rust/tests/target/issue-3272/v2.rs

18 lines
304 B
Rust
Raw Normal View History

// 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(),
);
}