summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-69225-SCEVAddExpr-wrap-flag.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/issues/issue-69225-SCEVAddExpr-wrap-flag.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/issues/issue-69225-SCEVAddExpr-wrap-flag.rs')
-rw-r--r--src/test/ui/issues/issue-69225-SCEVAddExpr-wrap-flag.rs33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/test/ui/issues/issue-69225-SCEVAddExpr-wrap-flag.rs b/src/test/ui/issues/issue-69225-SCEVAddExpr-wrap-flag.rs
deleted file mode 100644
index 6e030f1cc..000000000
--- a/src/test/ui/issues/issue-69225-SCEVAddExpr-wrap-flag.rs
+++ /dev/null
@@ -1,33 +0,0 @@
-// 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 mut arr = vec![vec![0u8; 3]];
-
- let mut z = vec![0];
- for arr_ref in arr.iter_mut() {
- for y in 0..x {
- for _ in 0..1 {
- z.reserve_exact(x);
- let iterator = std::iter::repeat(0).take(x);
- let mut cnt = 0;
- iterator.for_each(|_| {
- z[0] = 0;
- cnt += 1;
- });
- let a = y * x;
- let b = (y + 1) * x - 1;
- let slice = &mut arr_ref[a..b];
- slice[1 << 24] += 1;
- }
- }
- }
-}
-
-fn main() {
- do_test(1);
- do_test(2);
-}