Sign in
rust
/
rustfmt
/
HEAD
/
.
/
tests
/
source
/
issue-3272
/
v1.rs
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
(),
);
}