JamesMunns[m]: > <@jamesmunns:beeper.com> like: > ```rust > fn do_something() { > try_do_something().unwrap() > } > > fn try_do_something() -> Result { > // > } > ``` > > Then elsewhere: > ```rust > do_something(); // panics > ``` Yes, but the panic is on the unwrap, not inside the try_do_something, so it's not immediately clear where the error came from