aa8a53f687
Updates all the various files utilized in the system and idempotence tests to directly use the corresponding 'style_edition' configuration as opposed to keeping the original 'version' values and relying on the mapping.
16 lines
297 B
Rust
16 lines
297 B
Rust
// 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(),
|
|
);
|
|
}
|