summaryrefslogtreecommitdiff
path: root/rust/theBook/chapter-9-error-handling/panic/src/main.rs
blob: a3bc2a7cf971c565b2262eebbf185e4dd8e72b77 (plain)
1
2
3
4
5
fn main() {
    let x = vec![1,2,3];

    x[99];
}