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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
}