]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch08-common-collections/listing-08-01/src/main.rs
New upstream version 1.43.0+dfsg1
[rustc.git] / src / doc / book / listings / ch08-common-collections / listing-08-01 / src / main.rs
1 fn main() {
2 // ANCHOR: here
3 let v: Vec<i32> = Vec::new();
4 // ANCHOR_END: here
5 }