]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch09-error-handling/listing-09-01/src/main.rs
New upstream version 1.43.0+dfsg1
[rustc.git] / src / doc / book / listings / ch09-error-handling / listing-09-01 / src / main.rs
1 fn main() {
2 let v = vec![1, 2, 3];
3
4 v[99];
5 }