blob: 56dc048bf8a9064447f257b525b1a71bcc5e9eaa [file] [log] [blame]
// 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(),
);
}