summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-slice-oob.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-slice-oob.rs')
-rw-r--r--src/test/ui/consts/const-slice-oob.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-slice-oob.rs b/src/test/ui/consts/const-slice-oob.rs
new file mode 100644
index 000000000..35e5a4d22
--- /dev/null
+++ b/src/test/ui/consts/const-slice-oob.rs
@@ -0,0 +1,11 @@
+#[deny(const_err)]
+
+const FOO: &'static[u32] = &[1, 2, 3];
+const BAR: u32 = FOO[5];
+//~^ index out of bounds: the length is 3 but the index is 5
+//~| ERROR any use of this value will cause an error
+//~| WARN this was previously accepted by the compiler but is being phased out
+
+fn main() {
+ let _ = BAR;
+}