Skip to content

Commit 25a4adc

Browse files
committed
Reduce size of array in test case to 1MB
1 parent 9c5173f commit 25a4adc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-pass/init-large-type.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ extern "rust-intrinsic" {
1818
pub fn init<T>() -> T;
1919
}
2020

21-
const SIZE: usize = 512 * 1024 * 1024;
21+
const SIZE: usize = 1024 * 1024;
2222

2323
fn main() {
2424
let _memory: [u8; SIZE] = unsafe { init() };

0 commit comments

Comments
 (0)