This does not generate a deprecation warning, but will if the `try!` call is removed. ``` rust extern crate url; fn foo() -> Result<(), ()> { try!(url::decode_component("sdf").map_err(|_| ())); Ok(()) } ```