blob: 6319da985728963d59172de9377125317af5fee1 [file] [log] [blame]
// 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,
}
}