rust/src/test/run-pass/borrowck-nested-calls.rs

33 lines
925 B
Rust
Raw Normal View History

// Copyright 2012-2014 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 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-test FIXME (#6268) nested method calls
2013-03-15 19:24:24 +00:00
// Test that (safe) nested calls with `&mut` receivers are permitted.
2013-03-15 19:24:24 +00:00
struct Foo {a: uint, b: uint}
impl Foo {
pub fn inc_a(&mut self, v: uint) { self.a += v; }
2013-03-15 19:24:24 +00:00
pub fn next_b(&mut self) -> uint {
2013-03-15 19:24:24 +00:00
let b = self.b;
self.b += 1;
b
}
}
pub fn main() {
2013-03-15 19:24:24 +00:00
let mut f = Foo {a: 22, b: 23};
f.inc_a(f.next_b());
assert_eq!(f.a, 22+23);
assert_eq!(f.b, 24);
}