2013-12-25 23:55:05 -06:00
|
|
|
enum Either<T, U> { Left(T), Right(U) }
|
|
|
|
|
2015-01-08 05:02:42 -06:00
|
|
|
struct X(Either<(usize,usize), fn()>);
|
2013-03-07 18:36:30 -06:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl X {
|
2015-01-08 05:02:42 -06:00
|
|
|
pub fn with<F>(&self, blk: F) where F: FnOnce(&Either<(usize, usize), 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() {
|
2014-11-26 04:52:16 -06:00
|
|
|
let mut x = X(Either::Right(main as fn()));
|
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 {
|
2014-11-06 02:05:53 -06:00
|
|
|
&Either::Right(ref f) => {
|
2015-01-03 09:45:00 -06:00
|
|
|
x = X(Either::Left((0, 0)));
|
2014-02-10 06:44:03 -06:00
|
|
|
(*f)()
|
|
|
|
},
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!()
|
2014-02-10 06:44:03 -06:00
|
|
|
}
|
|
|
|
})
|
2012-12-28 21:36:35 -06:00
|
|
|
}
|