blob: 0da3cc2ba1b0434c363c2c8503066ef878e03840 [file] [log] [blame]
#![feature(rustc_attrs)]
#![feature(untagged_unions)]
#[rustc_outlives]
union Foo<'a, T: Copy> { //~ ERROR rustc_outlives
field1: Bar<'a, T>
}
// Type U needs to outlive lifetime 'b
union Bar<'b, U: Copy> {
field2: &'b U
}
fn main() {}