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-03-07 18:36:30 -06:00
|
|
|
struct X(Either<(uint,uint),extern fn()>);
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl X {
|
2013-11-19 18:34:19 -06:00
|
|
|
pub fn with(&self, blk: |x: &Either<(uint,uint),extern fn()>|) {
|
2012-09-11 23:25:01 -05:00
|
|
|
blk(&**self)
|
|
|
|
}
|
|
|
|
}
|
2013-05-31 17:17:22 -05:00
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn main() {
|
|
|
|
let mut x = X(Right(main));
|
2013-03-15 14:24:24 -05:00
|
|
|
do (&mut x).with |opt| {
|
2012-12-14 17:38:43 -06:00
|
|
|
match opt {
|
2012-12-18 16:35:44 -06:00
|
|
|
&Right(ref f) => {
|
2013-03-15 14:24:24 -05:00
|
|
|
x = X(Left((0,0))); //~ ERROR cannot assign to `x`
|
2012-12-18 16:35:44 -06:00
|
|
|
(*f)()
|
2012-09-11 23:25:01 -05:00
|
|
|
},
|
2013-10-21 15:08:31 -05:00
|
|
|
_ => fail!()
|
2012-09-11 23:25:01 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-28 21:36:35 -06:00
|
|
|
}
|