blob: d0ee1796c0ffcdccb6f27c954f46651bcda654e1 (
plain)
1
2
3
4
5
6
7
8
|
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
fn main() {
let _ = B;
}
|