Fix effect on deref-lval

This commit is contained in:
Patrick Walton 2011-04-07 13:30:50 -07:00
parent 015c0d0d59
commit a97a200413

View file

@ -1,4 +1,4 @@
fn main() {
impure fn main() {
auto x = @mutable 5;
*x = 1000;
log *x;