auto merge of #13437 : kaseyc/rust/remove_unnecessary_struct, r=sanxiyn

Removes the unused Point struct from assert-eq-macro-fail.rs.
This commit is contained in:
bors 2014-04-10 07:21:56 -07:00
commit e263ef1df7

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