rust/src/test/compile-fail/sync-rwlock-cond-shouldnt-escape.rs

12 lines
246 B
Rust
Raw Normal View History

// error-pattern: reference is not valid outside of its lifetime
use std;
import std::sync;
fn main() {
let x = ~sync::rwlock();
2012-08-20 14:23:37 -05:00
let mut y = None;
do x.write_cond |cond| {
2012-08-20 14:23:37 -05:00
y = Some(cond);
}
option::unwrap(y).wait();
}