2022-02-24 13:10:41 -06:00
|
|
|
error: extern static is too large for the current architecture
|
|
|
|
--> $DIR/extern-static-size-overflow.rs:38:5
|
|
|
|
|
|
|
|
|
LL | static BAZ: [u8; max_size()];
|
2022-07-07 21:32:51 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-24 13:10:41 -06:00
|
|
|
|
|
|
|
error: extern static is too large for the current architecture
|
|
|
|
--> $DIR/extern-static-size-overflow.rs:39:5
|
|
|
|
|
|
|
|
|
LL | static UWU: [usize; usize::MAX];
|
2022-07-07 21:32:51 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-24 13:10:41 -06:00
|
|
|
|
|
|
|
error: extern static is too large for the current architecture
|
|
|
|
--> $DIR/extern-static-size-overflow.rs:40:5
|
|
|
|
|
|
|
|
|
LL | static A: ReallyBig;
|
2022-07-07 21:32:51 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2022-02-24 13:10:41 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|