Files
rust/src/test/ui/deref-lval.rs

12 lines
162 B
Rust
Raw Normal View History

// run-pass
#![feature(box_syntax)]
2013-12-31 15:46:27 -08:00
use std::cell::Cell;
pub fn main() {
let x: Box<_> = box Cell::new(5);
2015-01-25 22:05:03 +01:00
x.set(1000);
2014-10-02 08:10:09 +03:00
println!("{}", x.get());
2013-12-31 15:46:27 -08:00
}