rust/tests/ui/impl-trait/lifetimes2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
181 B
Rust
Raw Normal View History

// check-pass
pub fn keys<'a>(x: &'a Result<u32, u32>) -> impl std::fmt::Debug + 'a {
match x {
Ok(map) => Ok(map),
Err(map) => Err(map),
}
}
fn main() {}