blob: 936484b0c1edd480b172676b46b3686b596fe88d [file] [log] [blame]
//@ run-fail
//@ error-pattern:index out of bounds: the len is 5 but the index is 10
//@ needs-subprocess
const C: [u32; 5] = [0; 5];
#[allow(unconditional_panic)]
fn test() -> u32 {
C[10]
}
fn main() {
test();
}