From 5ee75c0805be98f89ac4edd6101a0960add75108 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Tue, 15 Nov 2016 15:24:22 +0100 Subject: [PATCH] don't print in the binop tests --- tests/run-pass/binops.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/run-pass/binops.rs b/tests/run-pass/binops.rs index 9466f115b1a5..a03b96fa499f 100644 --- a/tests/run-pass/binops.rs +++ b/tests/run-pass/binops.rs @@ -76,11 +76,6 @@ fn test_class() { let q = p(1, 2); let mut r = p(1, 2); - unsafe { - println!("q = {:x}, r = {:x}", - (::std::mem::transmute::<*const P, usize>(&q)), - (::std::mem::transmute::<*const P, usize>(&r))); - } assert_eq!(q, r); r.y = 17; assert!((r.y != q.y));