about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-04-10 07:21:56 -0700
committerbors <bors@rust-lang.org>2014-04-10 07:21:56 -0700
commite263ef1df7b892ed29e53313565eb05ab75e52f4 (patch)
treef5273955fac0d24d980fa53b75e43e09fb43f0ac
parent6d1c6124f6c48af2d713a2004376c21c054fda0b (diff)
parent27920afa85ea9d3426a964e6294eb3c06919fad5 (diff)
downloadrust-e263ef1df7b892ed29e53313565eb05ab75e52f4.tar.gz
rust-e263ef1df7b892ed29e53313565eb05ab75e52f4.zip
auto merge of #13437 : kaseyc/rust/remove_unnecessary_struct, r=sanxiyn
Removes the unused Point struct from assert-eq-macro-fail.rs.
-rw-r--r--src/test/run-fail/assert-eq-macro-fail.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/run-fail/assert-eq-macro-fail.rs b/src/test/run-fail/assert-eq-macro-fail.rs
index 7cebfc723de..fd6d69efb4f 100644
--- a/src/test/run-fail/assert-eq-macro-fail.rs
+++ b/src/test/run-fail/assert-eq-macro-fail.rs
@@ -10,9 +10,6 @@
 
 // error-pattern:assertion failed: `(left == right) && (right == left)` (left: `14`, right: `15`)
 
-#[deriving(Eq)]
-struct Point { x : int }
-
 fn main() {
     assert_eq!(14,15);
 }