]> git.proxmox.com Git - rustc.git/blame - src/doc/book/listings/ch09-error-handling/no-listing-02-ask-compiler-for-type/src/main.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / doc / book / listings / ch09-error-handling / no-listing-02-ask-compiler-for-type / src / main.rs
CommitLineData
74b04a01
XL
1use std::fs::File;
2
3fn main() {
4 // ANCHOR: here
5 let f: u32 = File::open("hello.txt");
6 // ANCHOR_END: here
7}