blob: 63159ed05532fb77cf64493ebe2c9dff300d5131 [file] [log] [blame]
// check-pass
#![feature(const_refs_to_cell)]
const FOO: () = {
let x = std::cell::Cell::new(42);
let y = &x;
};
fn main() {
FOO;
}