2019-08-03 15:37:44 -05:00
|
|
|
error[E0080]: the type `[u8; 2305843009213693951]` is too big for the current architecture
|
2019-07-30 19:46:46 -05:00
|
|
|
--> $DIR/issue-56762.rs:19:1
|
|
|
|
|
|
|
|
|
LL | static MY_TOO_BIG_ARRAY_1: TooBigArray = TooBigArray::new();
|
2019-08-04 14:23:05 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-12-16 21:17:59 -06:00
|
|
|
|
2019-08-03 15:37:44 -05:00
|
|
|
error[E0080]: the type `[u8; 2305843009213693951]` is too big for the current architecture
|
2019-07-30 19:46:46 -05:00
|
|
|
--> $DIR/issue-56762.rs:21:1
|
|
|
|
|
|
|
|
|
LL | static MY_TOO_BIG_ARRAY_2: [u8; HUGE_SIZE] = [0x00; HUGE_SIZE];
|
2019-08-04 14:23:05 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-12-16 21:17:59 -06:00
|
|
|
|
2019-07-30 19:46:46 -05:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|