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