2012-12-10 19:32:48 -06:00
|
|
|
// 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 <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.
|
|
|
|
|
2013-12-25 23:55:05 -06:00
|
|
|
enum Either<T, U> { Left(T), Right(U) }
|
|
|
|
|
2014-02-13 22:23:01 -06:00
|
|
|
struct X(Either<(uint,uint), fn()>);
|
2013-03-07 18:36:30 -06:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl X {
|
2014-02-13 22:23:01 -06:00
|
|
|
pub fn with(&self, blk: |x: &Either<(uint,uint), fn()>|) {
|
2013-11-01 20:06:31 -05:00
|
|
|
let X(ref e) = *self;
|
|
|
|
blk(e)
|
2012-09-11 23:25:01 -05:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 17:17:22 -05:00
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn main() {
|
|
|
|
let mut x = X(Right(main));
|
2014-02-10 06:44:03 -06:00
|
|
|
(&mut x).with(
|
|
|
|
|opt| { //~ ERROR cannot borrow `x` as mutable more than once at a time
|
|
|
|
match opt {
|
|
|
|
&Right(ref f) => {
|
|
|
|
x = X(Left((0,0)));
|
|
|
|
(*f)()
|
|
|
|
},
|
|
|
|
_ => fail!()
|
|
|
|
}
|
|
|
|
})
|
2012-12-28 21:36:35 -06:00
|
|
|
}
|