summary refs log tree commit diff
path: root/src/test/run-fail/str-overrun.rs
blob: 31346964d4c23d420179a1cad6b795459939d22d (plain)
1
2
3
4
5
6
7
8
9
// -*- rust -*-

// error-pattern:bounds check
fn main() {
    let s: str = "hello";

    // Bounds-check failure.
    assert (s[5] == 0x0 as u8);
}