blob: 44b3a2c5a6dd9011d5c73cd8f696ad742ea3ece6 [file] [log] [blame]
//@ run-fail
//@ error-pattern:index out of bounds: the len is 5 but the index is 10
//@ needs-subprocess
const C: &'static [u8; 5] = b"hello";
#[allow(unconditional_panic)]
fn mir() -> u8 {
C[10]
}
fn main() {
mir();
}