blob: 23b46abc91d259cb377bff1f14262487158ea7a9 [file] [log] [blame]
//@ run-pass
// Test lifetimes are linked properly when we take reference
// to interior.
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);
}