summaryrefslogtreecommitdiffstats
path: root/src/test/ui/array-slice-vec/array_const_index-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/array-slice-vec/array_const_index-1.rs')
-rw-r--r--src/test/ui/array-slice-vec/array_const_index-1.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/array-slice-vec/array_const_index-1.rs b/src/test/ui/array-slice-vec/array_const_index-1.rs
new file mode 100644
index 000000000..f4326189c
--- /dev/null
+++ b/src/test/ui/array-slice-vec/array_const_index-1.rs
@@ -0,0 +1,9 @@
+const A: [i32; 0] = [];
+const B: i32 = A[1];
+//~^ index out of bounds: the length is 0 but the index is 1
+//~| 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 _ = B;
+}