2024-09-20 00:39:10 -07:00
|
|
|
error: extern static is too large for the target architecture
|
2024-07-09 19:25:28 -07:00
|
|
|
--> $DIR/extern-static-size-overflow.rs:20:5
|
2022-02-24 14:10:41 -05:00
|
|
|
|
|
|
|
|
|
LL | static BAZ: [u8; max_size()];
|
2022-07-08 02:32:51 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-24 14:10:41 -05:00
|
|
|
|
2024-09-20 00:39:10 -07:00
|
|
|
error: extern static is too large for the target architecture
|
2024-07-09 19:25:28 -07:00
|
|
|
--> $DIR/extern-static-size-overflow.rs:21:5
|
2022-02-24 14:10:41 -05:00
|
|
|
|
|
|
|
|
|
LL | static UWU: [usize; usize::MAX];
|
2022-07-08 02:32:51 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-24 14:10:41 -05:00
|
|
|
|
2024-09-20 00:39:10 -07:00
|
|
|
error: extern static is too large for the target architecture
|
2024-07-09 19:25:28 -07:00
|
|
|
--> $DIR/extern-static-size-overflow.rs:22:5
|
2022-02-24 14:10:41 -05:00
|
|
|
|
|
|
|
|
|
LL | static A: ReallyBig;
|
2022-07-08 02:32:51 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2022-02-24 14:10:41 -05:00
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|