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.
|
|
|
|
|
2012-12-28 21:36:35 -06:00
|
|
|
use core::either::*;
|
2013-01-08 16:00:45 -06:00
|
|
|
enum X = Either<(uint,uint),extern fn()>;
|
2012-09-11 23:25:01 -05:00
|
|
|
impl &X {
|
2013-01-08 16:00:45 -06:00
|
|
|
fn with(blk: fn(x: &Either<(uint,uint),extern fn()>)) {
|
2012-09-11 23:25:01 -05:00
|
|
|
blk(&**self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
|
|
|
let mut x = X(Right(main));
|
|
|
|
do (&mut x).with |opt| { //~ ERROR illegal borrow
|
2012-12-14 17:38:43 -06:00
|
|
|
match opt {
|
2012-12-18 16:35:44 -06:00
|
|
|
&Right(ref f) => {
|
2013-01-23 20:15:06 -06:00
|
|
|
x = X(Left((0,0))); //~ ERROR assigning to captured outer mutable variable
|
2012-12-18 16:35:44 -06:00
|
|
|
(*f)()
|
2012-09-11 23:25:01 -05:00
|
|
|
},
|
2013-01-31 19:51:01 -06:00
|
|
|
_ => die!()
|
2012-09-11 23:25:01 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-28 21:36:35 -06:00
|
|
|
}
|