]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/array-literal-index-oob.rs
Rollup merge of #64603 - gilescope:unused-lifetime-warning, r=matthewjasper
[rust.git] / src / test / ui / consts / array-literal-index-oob.rs
1 fn main() {
2     &{[1, 2, 3][4]};
3     //~^ ERROR index out of bounds
4     //~| ERROR reaching this expression at runtime will panic or abort
5 }