Skip to content

Commit ac12fc8

Browse files
committed
Fixup #24987
1 parent 3334bd0 commit ac12fc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/compile-fail/issue-15919.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
// except according to those terms.
1010

1111
fn main() {
12-
let x = [0usize; 9223372036854775808]; // We don't officially support 128-bit architecture
13-
//~^ error: the type `[usize; 9223372036854775808]` is too big for the current architecture
12+
let _ = [0usize; 9223372036854775808]; // We don't officially support 128-bit architecture
13+
//~^ ERROR: the type `[usize; 9223372036854775808]` is too big for the current architecture
1414
}

0 commit comments

Comments
 (0)