2014-02-07 19:08:32 +00:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-11 01:32:48 +00:00
|
|
|
// 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.
|
|
|
|
|
2014-04-25 05:29:30 +00:00
|
|
|
// ignore-test FIXME (#6268) nested method calls
|
2012-08-15 01:17:18 +00:00
|
|
|
|
2013-03-15 19:24:24 +00:00
|
|
|
// Test that (safe) nested calls with `&mut` receivers are permitted.
|
2012-08-15 01:17:18 +00:00
|
|
|
|
2013-03-15 19:24:24 +00:00
|
|
|
struct Foo {a: uint, b: uint}
|
2012-08-15 01:17:18 +00:00
|
|
|
|
2013-05-31 22:17:22 +00:00
|
|
|
impl Foo {
|
|
|
|
pub fn inc_a(&mut self, v: uint) { self.a += v; }
|
2013-03-15 19:24:24 +00:00
|
|
|
|
2013-05-31 22:17:22 +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
|
2012-08-15 01:17:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-03 23:30:54 +00:00
|
|
|
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);
|
2012-08-15 01:17:18 +00:00
|
|
|
}
|