rust/tests/rustdoc-html/auxiliary/elided-lifetime.rs
2026-01-07 14:23:30 +01:00

11 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)
}