Rollup merge of #32640 - jseyfried:remove_println, r=Manishearth

Remove accidental `println!`

This removes a use of `println!` added in #32358 that appears to accidental.
r? @Manishearth
This commit is contained in:
Manish Goregaokar 2016-04-01 18:44:48 +05:30
commit d611cc080c
1 changed files with 0 additions and 1 deletions

View File

@ -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