// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. struct point { x: int, y: int } trait methods { fn impurem(&self); fn blockm(&self, f: &fn()); } impl methods for point { fn impurem(&self) { } fn blockm(&self, f: &fn()) { f() } } fn a() { let mut p = point {x: 3, y: 4}; // Here: it's ok to call even though receiver is mutable, because we // can loan it out. p.impurem(); // But in this case we do not honor the loan: do p.blockm { p.x = 10; //~ ERROR cannot assign } } fn b() { let mut p = point {x: 3, y: 4}; // Here I create an outstanding loan and check that we get conflicts: let l = &mut p; p.impurem(); //~ ERROR cannot borrow l.x += 1; } fn c() { // Loaning @mut as & is considered legal due to dynamic checks... let q = @mut point {x: 3, y: 4}; q.impurem(); // ...but we still detect errors statically when we can. do q.blockm { q.x = 10; //~ ERROR cannot assign } } fn main() { }