about summary refs log tree commit diff
path: root/src/test/compile-fail/const-array-oob.rs
diff options
context:
space:
mode:
authorBjörn Steinbrink <bsteinbr@gmail.com>2015-03-12 00:19:37 +0100
committerBjörn Steinbrink <bsteinbr@gmail.com>2015-03-12 00:38:22 +0100
commitde67c3a5bbfc8a9db2dc3d134700046dd6db05b3 (patch)
treefce2f10fe1581a9a8eea5fafec1391c572202fcf /src/test/compile-fail/const-array-oob.rs
parentf899513a30165946a75ff7f515ab37a226e72172 (diff)
downloadrust-de67c3a5bbfc8a9db2dc3d134700046dd6db05b3.tar.gz
rust-de67c3a5bbfc8a9db2dc3d134700046dd6db05b3.zip
Fix LLVM assertion when out-of-bounds indexing in a constant
Fixes #23291
Diffstat (limited to 'src/test/compile-fail/const-array-oob.rs')
-rw-r--r--src/test/compile-fail/const-array-oob.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/compile-fail/const-array-oob.rs b/src/test/compile-fail/const-array-oob.rs
new file mode 100644
index 00000000000..84d35292608
--- /dev/null
+++ b/src/test/compile-fail/const-array-oob.rs
@@ -0,0 +1,16 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+const FOO: [u32; 3] = [1, 2, 3];
+const BAR: u32 = FOO[5]; //~ ERROR const index-expr is out of bounds
+
+fn main() {
+    let _ = BAR;
+}