rust/tests/target/configs/spaces_around_ranges/false.rs
2018-03-02 15:07:13 +13:00

23 lines
325 B
Rust

// rustfmt-spaces_around_ranges: false
// Spaces around ranges
fn main() {
let lorem = 0..10;
let ipsum = 0..=10;
match lorem {
1..5 => foo(),
_ => bar,
}
match lorem {
1..=5 => foo(),
_ => bar,
}
match lorem {
1...5 => foo(),
_ => bar,
}
}