13 lines
342 B
Rust
13 lines
342 B
Rust
|
// error-pattern: reference is not valid outside of its lifetime
|
||
|
use std;
|
||
|
import std::sync;
|
||
|
fn main() {
|
||
|
let x = ~sync::rwlock();
|
||
|
let mut y = none;
|
||
|
do x.write_downgrade |write_mode| {
|
||
|
y = some(write_mode);
|
||
|
}
|
||
|
// Adding this line causes a method unification failure instead
|
||
|
// do (&option::unwrap(y)).write { }
|
||
|
}
|