summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-static-size-overflow.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/extern/extern-static-size-overflow.stderr')
-rw-r--r--src/test/ui/extern/extern-static-size-overflow.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/extern/extern-static-size-overflow.stderr b/src/test/ui/extern/extern-static-size-overflow.stderr
new file mode 100644
index 000000000..1c9263995
--- /dev/null
+++ b/src/test/ui/extern/extern-static-size-overflow.stderr
@@ -0,0 +1,20 @@
+error: extern static is too large for the current architecture
+ --> $DIR/extern-static-size-overflow.rs:38:5
+ |
+LL | static BAZ: [u8; max_size()];
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: extern static is too large for the current architecture
+ --> $DIR/extern-static-size-overflow.rs:39:5
+ |
+LL | static UWU: [usize; usize::MAX];
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: extern static is too large for the current architecture
+ --> $DIR/extern-static-size-overflow.rs:40:5
+ |
+LL | static A: ReallyBig;
+ | ^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 3 previous errors
+