blob: 30e7e102b863583b54058f83d243c4582a6e7080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// run-pass
// Test use of stabilized const fns in std formerly using individual feature gates.
use std::cell::Cell;
const CELL: Cell<i32> = Cell::new(42);
fn main() {
let v = CELL.get();
CELL.set(v+1);
assert_eq!(CELL.get(), v);
}
|