rust/src/test/compile-fail/arc-rw-read-mode-shouldnt-escape.rs

13 lines
375 B
Rust
Raw Normal View History

extern mod std;
2012-09-05 14:32:05 -05:00
use std::arc;
fn main() {
2012-08-29 16:45:25 -05:00
let x = ~arc::RWARC(1);
2012-08-20 14:23:37 -05:00
let mut y = None;
do x.write_downgrade |write_mode| {
2012-08-20 14:23:37 -05:00
y = Some(x.downgrade(write_mode));
//~^ ERROR cannot infer an appropriate lifetime
}
// Adding this line causes a method unification failure instead
// do (&option::unwrap(y)).read |state| { assert *state == 1; }
}