about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/index_out_of_bounds_propagated.rs
blob: 112c7415076f3effed9bb577e051a0140252e011 (plain)
1
2
3
4
5
6
//@ build-fail

fn main() {
    let array = [std::env::args().len()];
    array[1]; //~ ERROR operation will panic
}