rust/src/test/compile-fail/pure-modifies-aliased.rs

23 lines
583 B
Rust
Raw Normal View History

// Check that pure functions cannot modify aliased state.
pure fn modify_in_ref(&&sum: {mut f: int}) {
sum.f = 3; //~ ERROR assigning to mutable field prohibited in pure context
}
pure fn modify_in_box(sum: @mut {f: int}) {
sum.f = 3; //~ ERROR assigning to mutable field prohibited in pure context
}
trait modify_in_box_rec {
pure fn modify_in_box_rec(sum: @{mut f: int});
}
2012-08-07 20:10:06 -05:00
impl int: modify_in_box_rec {
pure fn modify_in_box_rec(sum: @{mut f: int}) {
sum.f = self; //~ ERROR assigning to mutable field prohibited in pure context
}
}
fn main() {
}