mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-11 19:46:49 +00:00
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,
|
||
|
];
|