rust/src/test/ui/array_const_index-0.rs

9 lines
196 B
Rust
Raw Normal View History

const A: &'static [i32] = &[];
const B: i32 = (&A)[1];
//~^ index out of bounds: the len is 0 but the index is 1
//~| ERROR any use of this value will cause an error
2015-11-18 03:57:52 -06:00
fn main() {
let _ = B;
2015-11-18 03:57:52 -06:00
}