]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch13-functional-features/listing-13-13/src/main.rs
New upstream version 1.43.0+dfsg1
[rustc.git] / src / doc / book / listings / ch13-functional-features / listing-13-13 / src / main.rs
1 fn main() {
2 // ANCHOR: here
3 let v1 = vec![1, 2, 3];
4
5 let v1_iter = v1.iter();
6 // ANCHOR_END: here
7 }