From 71d163b53c1a02759ff1765ad6fc9a8e8a9363c7 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Thu, 2 Jan 2020 22:27:26 -0500 Subject: [PATCH] Run rustfmt --- src/librustc/ty/instance.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/librustc/ty/instance.rs b/src/librustc/ty/instance.rs index dbbd798538e..009b2af2067 100644 --- a/src/librustc/ty/instance.rs +++ b/src/librustc/ty/instance.rs @@ -81,7 +81,8 @@ impl<'tcx> Instance<'tcx> { if self.substs.has_param_types() { bug!( "Instance.ty called for type {:?} with projections in substs: {:?}", - ty, self.substs + ty, + self.substs ); } tcx.subst_and_normalize_erasing_regions(self.substs, ty::ParamEnv::reveal_all(), &ty)