b28a0cd6e6
Closes #2842
19 lines
512 B
Rust
19 lines
512 B
Rust
// Issue 2842
|
|
// The comment should not make the last line shorter
|
|
|
|
static XXX: [i8; 64] = [
|
|
1, // Comment
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
];
|
|
|
|
static XXX: [i8; 64] = [
|
|
1, // Comment
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
];
|
|
|
|
static XXX: [i8; 64] = [
|
|
1, // Comment
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1,
|
|
];
|