about summary refs log tree commit diff
path: root/tests/ui/limits
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2024-07-09 19:25:28 -0700
committerJubilee Young <workingjubilee@gmail.com>2024-09-19 16:23:38 -0700
commitf4cb6ef8d86cdf62f8f0c8f0b62395ae2616da26 (patch)
treed22111f8036410b6cf96c7414e309af4a751492b /tests/ui/limits
parentd6383b4605856394ef839b82c9dec5c4d0b67e3c (diff)
downloadrust-f4cb6ef8d86cdf62f8f0c8f0b62395ae2616da26.tar.gz
rust-f4cb6ef8d86cdf62f8f0c8f0b62395ae2616da26.zip
Keep object-size-dependent tests failing
These tests depend on the internal logic of rustc regarding handling
very large objects. Fix them to reflect rustc_abi::obj_size_bound diffs.
Diffstat (limited to 'tests/ui/limits')
-rw-r--r--tests/ui/limits/huge-enum.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/limits/huge-enum.rs b/tests/ui/limits/huge-enum.rs
index cf6e637388c..031b342afb3 100644
--- a/tests/ui/limits/huge-enum.rs
+++ b/tests/ui/limits/huge-enum.rs
@@ -6,7 +6,7 @@
 type BIG = Option<[u32; (1<<29)-1]>;
 
 #[cfg(target_pointer_width = "64")]
-type BIG = Option<[u32; (1<<45)-1]>;
+type BIG = Option<[u32; (1<<59)-1]>;
 
 fn main() {
     let big: BIG = None;