From 5428e6e27306519c9957c8f3c448c63b7fef3a06 Mon Sep 17 00:00:00 2001 From: Jeffrey Seyfried Date: Thu, 31 Mar 2016 06:22:12 +0000 Subject: [PATCH] Remove accidental `println!` --- src/librustc_typeck/check/method/suggest.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/librustc_typeck/check/method/suggest.rs b/src/librustc_typeck/check/method/suggest.rs index aae7912cace40..45fe51239a844 100644 --- a/src/librustc_typeck/check/method/suggest.rs +++ b/src/librustc_typeck/check/method/suggest.rs @@ -41,7 +41,6 @@ use super::probe::Mode; fn is_fn_ty<'a, 'tcx>(ty: &Ty<'tcx>, fcx: &FnCtxt<'a, 'tcx>, span: Span) -> bool { let cx = fcx.tcx(); - println!("{:?}", ty); match ty.sty { // Not all of these (e.g. unsafe fns) implement FnOnce // so we look for these beforehand