enough
--> crates/ide_db/src/runnables.rs:232:28
|
231 | fn syn_branches(path: &RefCell<MutalPath<'_>>, dvg_point: &DifferencePoint) {
| ---- - let's call the lifetime of this reference '1
| |
| has type &RefCell<Vec<Bijection<'2>>>
232 | let mut borrowed = path.borrow_mut();
| ^^^^^^^^^^^^^^^^^ argument requires that '1 must outlive '2
error[E0597]: borrowed does not live long enough
--> crates/ide_db/src/runnables.rs:233:29
|
231 | fn syn_branches(path: &RefCell<MutalPath<'_>>, dvg_point: &DifferencePoint) {
| ---- has type &RefCell<Vec<Bijection<'2>>>
232 | let mut borrowed = path.borrow_mut();
233 | let mut last_sync = borrowed.iter_mut();
| ^^^^^^^^^^^^^^^^^^^
https://doc.rust-lang.org/nomicon/subtyping.html
непонятно что этот код делает, помоему ты значение из RefCell куда то пытаешься сохранить, при чём через ссылку на него.
Обсуждают сегодня