about summary refs log tree commit diff
path: root/tests/ui/extern/extern-static-size-overflow.stderr
blob: c6490e96a8e6f7ed47865db41fc20badcdec8fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: extern static is too large for the target architecture
  --> $DIR/extern-static-size-overflow.rs:20:5
   |
LL |     static BAZ: [u8; max_size()];
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: extern static is too large for the target architecture
  --> $DIR/extern-static-size-overflow.rs:21:5
   |
LL |     static UWU: [usize; usize::MAX];
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: extern static is too large for the target architecture
  --> $DIR/extern-static-size-overflow.rs:22:5
   |
LL |     static A: ReallyBig;
   |     ^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors