]> git.lizzy.rs Git - rust.git/blob - src/test/ui/extern/extern-static-size-overflow.stderr
Rollup merge of #93400 - ChayimFriedman2:dont-suggest-using-const-with-bounds-unused...
[rust.git] / src / test / ui / extern / extern-static-size-overflow.stderr
1 error: extern static is too large for the current architecture
2   --> $DIR/extern-static-size-overflow.rs:38:5
3    |
4 LL |     static BAZ: [u8; max_size()];
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
7 error: extern static is too large for the current architecture
8   --> $DIR/extern-static-size-overflow.rs:39:5
9    |
10 LL |     static UWU: [usize; usize::MAX];
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: extern static is too large for the current architecture
14   --> $DIR/extern-static-size-overflow.rs:40:5
15    |
16 LL |     static A: ReallyBig;
17    |     ^^^^^^^^^^^^^^^^^^^^
18
19 error: aborting due to 3 previous errors
20