summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-outlives-nominal-type-struct-region.rs
blob: bba8b2445249676b45a08bb2ecb0d3c5f6d4ad97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Test that a nominal type (like `Foo<'a>`) outlives `'b` if its
// arguments (like `'a`) outlive `'b`.
//
// Rule OutlivesNominalType from RFC 1214.

// check-pass

#![feature(rustc_attrs)]
#![allow(dead_code)]

mod variant_struct_region {
    struct Foo<'a> {
        x: &'a i32,
    }
    struct Bar<'a,'b> {
        f: &'a Foo<'b>
    }
}

fn main() { }