blob: b3325a05e5c07dabb2aa84a3242b40bb8cc266d7 [file] [log] [blame]
use std::cell::Cell;
fn check<'a, 'b>(x: Cell<&'a ()>, y: Cell<&'b ()>)
where
'a: 'b,
{
}
fn test<'a, 'b>(x: Cell<&'a ()>, y: Cell<&'b ()>) {
let f = check;
f(x, y);
//~^ ERROR lifetime may not live long enough
}
fn main() {}