summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/regions-dependent-let-ref.rs
blob: 94e3df4b3f1e87d65aa74913e9a21fc4ddcae687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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);
}