summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/derive-clone-for-eq.fixed
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/suggestions/derive-clone-for-eq.fixed2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/ui/suggestions/derive-clone-for-eq.fixed b/tests/ui/suggestions/derive-clone-for-eq.fixed
index f07784d53..a74487019 100644
--- a/tests/ui/suggestions/derive-clone-for-eq.fixed
+++ b/tests/ui/suggestions/derive-clone-for-eq.fixed
@@ -1,8 +1,6 @@
// run-rustfix
// https://github.com/rust-lang/rust/issues/79076
-use std::cmp::PartialEq;
-
#[derive(Clone, Eq)] //~ ERROR [E0277]
pub struct Struct<T: std::clone::Clone>(T);