summaryrefslogtreecommitdiff
path: root/src/collection/ref.rs
diff options
context:
space:
mode:
authorMica White <botahamec@gmail.com>2024-12-26 13:23:40 -0500
committerMica White <botahamec@gmail.com>2024-12-26 13:33:52 -0500
commit12d4850092ced6156d8468ae1cbc5dc3d752276e (patch)
treee537e0fc2ad3aceb454432e4cfac5657fd1787f4 /src/collection/ref.rs
parent9eec9ab94bbe5c9fbd52d5bbf393fe1ddcc6fc26 (diff)
skip some mutants
Diffstat (limited to 'src/collection/ref.rs')
-rw-r--r--src/collection/ref.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/collection/ref.rs b/src/collection/ref.rs
index 1e17412..2f4db20 100644
--- a/src/collection/ref.rs
+++ b/src/collection/ref.rs
@@ -40,6 +40,7 @@ where
}
unsafe impl<L: Lockable> RawLock for RefLockCollection<'_, L> {
+ #[mutants::skip] // this should never run
fn poison(&self) {
for lock in &self.locks {
lock.poison();