about summary refs log tree commit diff
path: root/tests/ui/nll/issue-95272.rs
blob: b3325a05e5c07dabb2aa84a3242b40bb8cc266d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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() {}