rust/tests/source/configs/spaces_around_ranges/true.rs

23 lines
324 B
Rust
Raw Normal View History

// rustfmt-spaces_around_ranges: true
// 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,
}
}