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

9 lines
203 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
//~| ERROR erroneous constant used [E0080]
}