blob: 8bc6b2e4a4fbb505e667b853adf4d4c1488214d7 [file] [log] [blame]
// compile-flags: -Z borrowck=mir
#![allow(dead_code)]
use std::cell::Cell;
struct Foo<'a: 'b, 'b> {
x: Cell<&'a u32>,
y: Cell<&'b u32>,
}
fn bar<'a, 'b>(x: Cell<&'a u32>, y: Cell<&'b u32>) {
Foo { x, y };
//~^ ERROR lifetime may not live long enough
}
fn main() {}