``` rust #![feature(std_misc)] use std::cell::RefCell; fn main() { let b = RefCell::new(Some(5)); if let Some(x) = b.borrow().clone() { } } ``` And the error is: ``` error: `b` does not live long enough ```