summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-69225-layout-repeated-checked-add.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
commitc23a457e72abe608715ac76f076f47dc42af07a5 (patch)
tree2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /tests/ui/issues/issue-69225-layout-repeated-checked-add.rs
parentReleasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz
rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-69225-layout-repeated-checked-add.rs')
-rw-r--r--tests/ui/issues/issue-69225-layout-repeated-checked-add.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/ui/issues/issue-69225-layout-repeated-checked-add.rs b/tests/ui/issues/issue-69225-layout-repeated-checked-add.rs
deleted file mode 100644
index 7f43e4d1a..000000000
--- a/tests/ui/issues/issue-69225-layout-repeated-checked-add.rs
+++ /dev/null
@@ -1,31 +0,0 @@
-// Ensure we appropriately error instead of overflowing a calculation when creating a new Alloc
-// Layout
-
-// run-fail
-// compile-flags: -C opt-level=3
-// error-pattern: index out of bounds: the len is 0 but the index is 16777216
-// ignore-wasm no panic or subprocess support
-// ignore-emscripten no panic or subprocess support
-
-fn do_test(x: usize) {
- let arr = vec![vec![0u8; 3]];
-
- let mut z = Vec::new();
- for arr_ref in arr {
- for y in 0..x {
- for _ in 0..1 {
- z.extend(std::iter::repeat(0).take(x));
- let a = y * x;
- let b = (y + 1) * x - 1;
- let slice = &arr_ref[a..b];
- eprintln!("{} {} {} {}", a, b, arr_ref.len(), slice.len());
- eprintln!("{:?}", slice[1 << 24]);
- }
- }
- }
-}
-
-fn main() {
- do_test(1);
- do_test(2);
-}