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

16 lines
278 B
Rust
Raw Normal View History

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