Auto merge of #36545 - Cobrand:wild-print-fix, r=sfackler

Remove stray println! when invoking error E0316

Removed a wild println! statement that has been here for over a year and a half.

Closes #36543
This commit is contained in:
bors 2016-09-18 21:01:49 -07:00 committed by GitHub
commit 5f6f838448
1 changed files with 0 additions and 1 deletions

View File

@ -337,7 +337,6 @@ impl<'a, 'tcx, 'v> Visitor<'v> for LifetimeContext<'a, 'tcx> {
if !self.trait_ref_hack || !trait_ref.bound_lifetimes.is_empty() {
if self.trait_ref_hack {
println!("{:?}", trait_ref.span);
span_err!(self.sess, trait_ref.span, E0316,
"nested quantification of lifetimes");
}