2012-12-10 17:32:48 -08: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-03-07 16:36:30 -08:00
|
|
|
struct X(Either<(uint,uint),extern fn()>);
|
|
|
|
|
2013-03-13 17:57:30 -07:00
|
|
|
pub impl X {
|
|
|
|
fn with(&self, blk: &fn(x: &Either<(uint,uint),extern fn()>)) {
|
2012-09-11 21:25:01 -07:00
|
|
|
blk(&**self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
|
|
|
let mut x = X(Right(main));
|
|
|
|
do (&mut x).with |opt| { //~ ERROR illegal borrow
|
2012-12-14 15:38:43 -08:00
|
|
|
match opt {
|
2012-12-18 14:35:44 -08:00
|
|
|
&Right(ref f) => {
|
2013-01-23 18:15:06 -08:00
|
|
|
x = X(Left((0,0))); //~ ERROR assigning to captured outer mutable variable
|
2012-12-18 14:35:44 -08:00
|
|
|
(*f)()
|
2012-09-11 21:25:01 -07:00
|
|
|
},
|
2013-02-11 19:26:38 -08:00
|
|
|
_ => fail!()
|
2012-09-11 21:25:01 -07:00
|
|
|
}
|
|
|
|
}
|
2012-12-28 19:36:35 -08:00
|
|
|
}
|