blob: b8e245475da92314e8e4b5e9e5a4ef28690d4520 [file] [log] [blame] [edit]
//@ run-fail
//@ error-pattern:index out of bounds: the len is 5 but the index is 5
//@ ignore-emscripten no processes
fn main() {
let s: String = "hello".to_string();
// Bounds-check panic.
assert_eq!(s.as_bytes()[5], 0x0 as u8);
}