Sign in
rust
/
rust
/
refs/heads/auto
/
.
/
src
/
tools
/
rustfmt
/
tests
/
target
/
issue-3272
/
v2.rs
blob: ca7718c5a610af044ddfdf39e8e8618eaf51d5a6 [
file
] [
log
] [
blame
] [
edit
]
// 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
(),
);
}