summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/inheritance/overloading.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/inheritance/overloading.rs')
-rw-r--r--tests/ui/traits/inheritance/overloading.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/ui/traits/inheritance/overloading.rs b/tests/ui/traits/inheritance/overloading.rs
index 083643e82..f126847da 100644
--- a/tests/ui/traits/inheritance/overloading.rs
+++ b/tests/ui/traits/inheritance/overloading.rs
@@ -1,5 +1,4 @@
// run-pass
-use std::cmp::PartialEq;
use std::ops::{Add, Sub, Mul};
trait MyNum : Add<Output=Self> + Sub<Output=Self> + Mul<Output=Self> + PartialEq + Clone { }