rust/tests/ui/feature-gates/feature-gate-const_refs_to_...

13 lines
148 B
Rust

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