If `foo` wants a `&str` and `bar: Option<String>`, I would expect `foo(&try_opt!(bar)` to work, but we need `foo(&&try_opt!(bar)`. Which is odd looking.