7 lines
139 B
Rust
7 lines
139 B
Rust
|
// rustfmt-spaces_within_square_brackets: true
|
||
|
// Spaces within square-brackets
|
||
|
|
||
|
fn main() {
|
||
|
let lorem: [usize; 2] = [ipsum, dolor];
|
||
|
}
|