summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-lifetime-static-items-enclosing-scopes.rs
blob: b6a89e29ecc4271899e125f36a94ace8961de20a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// run-pass
#![allow(dead_code)]
// This test verifies that temporary lifetime is correctly computed
// for static objects in enclosing scopes.


use std::cmp::PartialEq;

fn f<T:PartialEq+std::fmt::Debug>(o: &mut Option<T>) {
    assert_eq!(*o, None);
}

pub fn main() {
    mod t {
        enum E {V=1, A=0}
        static C: E = E::V;
    }

    f::<isize>(&mut None);
}