From 27920afa85ea9d3426a964e6294eb3c06919fad5 Mon Sep 17 00:00:00 2001 From: Kasey Carrothers Date: Wed, 9 Apr 2014 19:31:20 -0700 Subject: [PATCH] Remove the unused Point struct in the assert-eq-macro-fail.rs test. --- src/test/run-fail/assert-eq-macro-fail.rs | 3 --- 1 file changed, 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 7cebfc723de5f..fd6d69efb4f6e 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); }