mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
315 B
Rust
13 lines
315 B
Rust
//@ run-pass
|
|
// Test lifetimes are linked properly when we take reference
|
|
// to interior.
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
struct Foo(isize);
|
|
pub fn main() {
|
|
// Here the lifetime of the `&` should be at least the
|
|
// block, since a ref binding is created to the interior.
|
|
let &Foo(ref _x) = &Foo(3);
|
|
}
|