Remove the unused Point struct in the assert-eq-macro-fail.rs test.

This commit is contained in:
Kasey Carrothers 2014-04-09 19:31:20 -07:00
parent 7fbcb400f0
commit 27920afa85

View File

@ -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);
}