rust/tests/target/spaces-around-ranges.rs
2018-03-02 15:07:13 +13:00

15 lines
277 B
Rust

// rustfmt-spaces_around_ranges: true
fn bar(v: &[u8]) {}
fn foo() {
let a = vec![0; 20];
for j in 0 ..= 20 {
for i in 0 .. 3 {
bar(a[i .. j]);
bar(a[i ..]);
bar(a[.. j]);
bar(a[..= (j + 1)]);
}
}
}