mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
241 B
Rust
14 lines
241 B
Rust
// 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() {}
|