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

13 lines
372 B
Rust
Raw Normal View History

use std;
import std::arc;
fn main() {
let x = ~arc::rw_arc(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; }
}