blob: f3adbe37c76968472066b17f40e7a420bc4bd81f [file] [log] [blame]
// rustfmt-style_edition: 2024
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(),
);
}