File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -330,9 +330,9 @@ Definite bugs found:
330
330
331
331
Violations of [ Stacked Borrows] found that are likely bugs (but Stacked Borrows is currently just an experiment):
332
332
333
- * [ ` VecDeque ` creating overlapping mutable references] ( https://github.com/rust-lang/rust/pull/56161 )
334
- * [ ` BTreeMap ` creating mutable references that overlap with shared references] ( https://github.com/rust-lang/rust/pull/58431 )
335
- * [ ` LinkedList ` creating overlapping mutable references] ( https://github.com/rust-lang/rust/pull/60072 )
333
+ * [ ` VecDeque::drain ` creating overlapping mutable references] ( https://github.com/rust-lang/rust/pull/56161 )
334
+ * [ ` BTreeMap ` iterators creating mutable references that overlap with shared references] ( https://github.com/rust-lang/rust/pull/58431 )
335
+ * [ ` LinkedList ` cursor insertion creating overlapping mutable references] ( https://github.com/rust-lang/rust/pull/60072 )
336
336
* [ ` Vec::push ` invalidating existing references into the vector] ( https://github.com/rust-lang/rust/issues/60847 )
337
337
* [ ` align_to_mut ` violating uniqueness of mutable references] ( https://github.com/rust-lang/rust/issues/68549 )
338
338
* [ ` sized-chunks ` creating aliasing mutable references] ( https://github.com/bodil/sized-chunks/issues/8 )
@@ -341,6 +341,8 @@ Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows
341
341
* [ ink! creating overlapping mutable references] ( https://github.com/rust-lang/miri/issues/1364 )
342
342
* [ TiKV creating overlapping mutable reference and raw pointer] ( https://github.com/tikv/tikv/pull/7709 )
343
343
* [ Windows ` Env ` iterator creating ` *const T ` from ` &T ` to read memory outside of ` T ` ] ( https://github.com/rust-lang/rust/pull/70479 )
344
+ * [ ` BTreeMap::iter_mut ` creating overlapping mutable references] ( https://github.com/rust-lang/rust/issues/73915 )
345
+ * [ ` VecDeque::iter_mut ` creating overlapping mutable references] ( https://github.com/rust-lang/rust/issues/74029 )
344
346
345
347
## License
346
348
You can’t perform that action at this time.
0 commit comments