You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following would ideally panic, but might have to abort due to double panic, unspecified TLS drop order, or the inability to access TLS values during or after their destruction:
Calling Gc::deref within GcState::drop
Calling Gc::clone within GcState::drop
Calling Gc::new within GcState::drop
The following currently panic, but could also be made to work:
Calling force_collect within force_collect (would do nothing if nightly's RefCell::try_borrow_mut method indicates that a borrow is already outstanding)
Calling Gc::new within force_collect
The text was updated successfully, but these errors were encountered:
The following can and should panic:
Gc::deref
withinforce_collect
Gc::clone
withinforce_collect
Gc::new
withinGcState::drop
The following would ideally panic, but might have to abort due to double panic, unspecified TLS drop order, or the inability to access TLS values during or after their destruction:
Gc::deref
withinGcState::drop
Gc::clone
withinGcState::drop
Gc::new
withinGcState::drop
The following currently panic, but could also be made to work:
force_collect
withinforce_collect
(would do nothing if nightly'sRefCell::try_borrow_mut
method indicates that a borrow is already outstanding)Gc::new
withinforce_collect
The text was updated successfully, but these errors were encountered: