use std; use std::arc; fn main() { let x = ~arc::RWARC(1); let mut y = None; do x.write_downgrade |write_mode| { 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; } }