2012-06-01 17:46:32 -05:00
|
|
|
type point = { x: int, y: int };
|
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
trait methods {
|
|
|
|
fn impurem();
|
|
|
|
fn blockm(f: fn());
|
|
|
|
pure fn purem();
|
|
|
|
}
|
|
|
|
|
|
|
|
impl foo of methods for point {
|
2012-06-01 17:46:32 -05:00
|
|
|
fn impurem() {
|
|
|
|
}
|
|
|
|
|
2012-06-01 23:54:38 -05:00
|
|
|
fn blockm(f: fn()) { f() }
|
|
|
|
|
2012-06-01 17:46:32 -05:00
|
|
|
pure fn purem() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn a() {
|
|
|
|
let mut p = {x: 3, y: 4};
|
|
|
|
|
2012-06-01 23:54:38 -05:00
|
|
|
// Here: it's ok to call even though receiver is mutable, because we
|
|
|
|
// can loan it out.
|
2012-06-01 17:46:32 -05:00
|
|
|
p.purem();
|
|
|
|
p.impurem();
|
2012-06-01 23:54:38 -05:00
|
|
|
|
|
|
|
// But in this case we do not honor the loan:
|
2012-07-04 14:04:28 -05:00
|
|
|
do p.blockm { //~ NOTE loan of mutable local variable granted here
|
2012-06-30 06:23:59 -05:00
|
|
|
p.x = 10; //~ ERROR assigning to mutable field prohibited due to outstanding loan
|
2012-06-01 23:54:38 -05:00
|
|
|
}
|
2012-06-01 17:46:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn b() {
|
|
|
|
let mut p = {x: 3, y: 4};
|
|
|
|
|
2012-06-01 23:54:38 -05:00
|
|
|
// Here I create an outstanding loan and check that we get conflicts:
|
|
|
|
|
2012-06-30 06:23:59 -05:00
|
|
|
&mut p; //~ NOTE prior loan as mutable granted here
|
|
|
|
//~^ NOTE prior loan as mutable granted here
|
2012-06-01 17:46:32 -05:00
|
|
|
|
2012-06-30 06:23:59 -05:00
|
|
|
p.purem(); //~ ERROR loan of mutable local variable as immutable conflicts with prior loan
|
|
|
|
p.impurem(); //~ ERROR loan of mutable local variable as immutable conflicts with prior loan
|
2012-06-01 17:46:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn c() {
|
2012-06-01 23:54:38 -05:00
|
|
|
// Here the receiver is in aliased memory and hence we cannot
|
|
|
|
// consider it immutable:
|
2012-06-01 17:46:32 -05:00
|
|
|
let q = @mut {x: 3, y: 4};
|
2012-06-01 23:54:38 -05:00
|
|
|
|
|
|
|
// ...this is ok for pure fns
|
2012-06-01 17:46:32 -05:00
|
|
|
(*q).purem();
|
2012-06-01 23:54:38 -05:00
|
|
|
|
|
|
|
// ...but not impure fns
|
2012-06-30 06:23:59 -05:00
|
|
|
(*q).impurem(); //~ ERROR illegal borrow unless pure: creating immutable alias to aliasable, mutable memory
|
|
|
|
//~^ NOTE impure due to access to impure function
|
2012-06-01 17:46:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|
|
|
|
|