unwrap_result/unwrap_result.rs
1fn fn3() {
2 fn4(); // Source printing at start the of a file ...
3}
4
5fn fn2() {
6 // sdfsdf
7 let _dead = 1 + 4;
8 fn3();
9 let _fsdf = "sdfsdf";
10 let _fsgg = 2 + 5;
11}
12
13fn fn1() {
14 fn2();
15}
16
17fn main() {
18 color_backtrace::install();
19 fn1();
20}
21
22fn fn4() {
23 // Source printing at the end of a file
24 "x".parse::<u32>().unwrap();
25}