mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
b28a0cd6e6
Closes #2842
20 lines
516 B
Rust
20 lines
516 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,
|
|
];
|