Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
elided-lifetime-in-path-in-pat.rs
blob: 4011f6c9687cebd0ef8f957cd6a24cee5014bbdf [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
struct
Foo
<
'
a
>
{
x
:
&
'
a
(),
}
// The lifetime in pattern-position `Foo` is elided.
// Verify that lowering does not create an independent lifetime parameter for it.
fn
foo
<
'a>(Foo { x }: Foo<'
a
>)
{
*
x
}
fn
main
()
{}