blob: 0bf6490bafed8200a7517fe8d35ddbf55725bc10 [file] [log] [blame]
//@ run-pass
use std::cell::RefCell;
fn main() {
let x = RefCell::new(0);
if *x.borrow() == 0 {} else {}
}