1
Fork 0
rust/src/test/ui/consts/array-literal-index-oob.rs

8 lines
156 B
Rust
Raw Normal View History

// build-fail
fn main() {
&{[1, 2, 3][4]};
//~^ ERROR index out of bounds
//~| ERROR reaching this expression at runtime will panic or abort
}