rust/tests/rustdoc/auxiliary/elided-lifetime.rs
2023-01-11 09:32:08 +00:00

12 lines
147 B
Rust

#![crate_name = "bar"]
pub struct Ref<'a>(&'a u32);
pub fn test5(a: &u32) -> Ref {
Ref(a)
}
pub fn test6(a: &u32) -> Ref<'_> {
Ref(a)
}