blob: 4f5cab59bfc6708d6d677c4e7b22417ac23790df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// run-fail
// error-pattern:index out of bounds: the len is 5 but the index is 10
// ignore-emscripten no processes
const C: &'static [u8; 5] = b"hello";
#[allow(unconditional_panic)]
fn mir() -> u8 {
C[10]
}
fn main() {
mir();
}
|