rust/tests/ui/feature-gates/feature-gate-const_refs_to_cell.rs

13 lines
147 B
Rust
Raw Normal View History

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