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

13 lines
342 B
Rust
Raw Normal View History

// error-pattern: reference is not valid outside of its lifetime
use std;
import std::sync;
fn main() {
2012-08-29 16:45:25 -05:00
let x = ~sync::RWlock();
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(write_mode);
}
// Adding this line causes a method unification failure instead
// do (&option::unwrap(y)).write { }
}