1 2 3 4 5 6 7 8 9 10 11 12 13
fn fn3() { let blah = 123; panic!("{}", blah); } fn fn2() { fn3(); } fn main() { color_backtrace::install(); fn2(); }