mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
245 B
Rust
16 lines
245 B
Rust
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;
|
|
//~^ ERROR lifetime may not live long enough
|
|
f(x, y);
|
|
}
|
|
|
|
fn main() {}
|