From bcf088e4624bc82d01858098946ed90225422bcd Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 23 Nov 2020 07:40:20 -0800 Subject: [PATCH] Fix another unused imports warning --- crates/macos_frames_test/tests/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/macos_frames_test/tests/main.rs b/crates/macos_frames_test/tests/main.rs index 1d28f2022..f0e905b24 100644 --- a/crates/macos_frames_test/tests/main.rs +++ b/crates/macos_frames_test/tests/main.rs @@ -8,7 +8,7 @@ #[test] #[cfg(target_os = "macos")] fn backtrace_no_dsym() { - use std::{env, fs, panic}; + use std::{env, fs}; // Find our dSYM and replace the DWARF binary with an empty file let mut dsym_path = env::current_exe().unwrap();