mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
147 B
Rust
12 lines
147 B
Rust
// check-pass
|
|
|
|
#![feature(const_refs_to_cell)]
|
|
|
|
const FOO: () = {
|
|
let x = std::cell::Cell::new(42);
|
|
let y = &x;
|
|
};
|
|
|
|
fn main() {
|
|
FOO;
|
|
}
|