mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 00:47:36 +00:00
15 lines
244 B
Rust
15 lines
244 B
Rust
// 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 test() -> u8 {
|
|
C[10]
|
|
}
|
|
|
|
fn main() {
|
|
test();
|
|
}
|