summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-infer-static-from-proc.rs
blob: 39501e2d697a38b847770aa4482aca86329e2f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// run-pass
#![allow(non_upper_case_globals)]

// Check that the 'static bound on a proc influences lifetimes of
// region variables contained within (otherwise, region inference will
// give `x` a very short lifetime).

// pretty-expanded FIXME #23616

static i: usize = 3;
fn foo<F:FnOnce()+'static>(_: F) {}
fn read(_: usize) { }
pub fn main() {
    let x = &i;
    foo(move|| {
        read(*x);
    });
}