summaryrefslogtreecommitdiffstats
path: root/src/test/ui/array-slice-vec/array_const_index-1.rs
blob: f4326189c1917d15bc471788701761ddccc94be1 (plain)
1
2
3
4
5
6
7
8
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;
}