rust/tests/ui/limits/huge-static.stderr
2024-09-20 10:02:14 -07:00

16 lines
689 B
Plaintext

error[E0080]: could not evaluate static initializer
--> $DIR/huge-static.rs:19:1
|
LL | static MY_TOO_BIG_ARRAY_1: TooBigArray = TooBigArray::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ values of the type `[u8; 2305843009213693952]` are too big for the target architecture
error[E0080]: could not evaluate static initializer
--> $DIR/huge-static.rs:22:1
|
LL | static MY_TOO_BIG_ARRAY_2: [u8; HUGE_SIZE] = [0x00; HUGE_SIZE];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ values of the type `[u8; 2305843009213693952]` are too big for the target architecture
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0080`.