summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-const_refs_to_cell.rs
blob: 63159ed05532fb77cf64493ebe2c9dff300d5131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass

#![feature(const_refs_to_cell)]

const FOO: () = {
    let x = std::cell::Cell::new(42);
    let y = &x;
};

fn main() {
    FOO;
}