From 361c5fd359380771f117e06b380f82774a9e98f4 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Thu, 2 Nov 2023 19:41:44 -0700 Subject: [PATCH] Fix missing import on Miri Signed-off-by: John Nunley --- tests/drop.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/drop.rs b/tests/drop.rs index 202b78d..2b1ce56 100644 --- a/tests/drop.rs +++ b/tests/drop.rs @@ -1,3 +1,4 @@ +#[cfg(not(miri))] use std::mem; use std::panic::catch_unwind; use std::sync::atomic::{AtomicUsize, Ordering};