From 31bbeb9eff7b11554a87f0647fa9e542cd77597a Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Fri, 16 Sep 2016 10:28:43 +0200 Subject: [PATCH] fix binding renaming in previous commit --- src/interpreter/terminator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter/terminator.rs b/src/interpreter/terminator.rs index 4e9d0186b7cf..d8edad79f1eb 100644 --- a/src/interpreter/terminator.rs +++ b/src/interpreter/terminator.rs @@ -531,7 +531,7 @@ impl<'a, 'tcx> EvalContext<'a, 'tcx> { args.remove(0); Ok((did, substs)) } else { - bug!("VtableFnPointer did not contain a concrete function: {:?}", fn_ty) + bug!("VtableFnPointer did not contain a concrete function: {:?}", vtable_fn_ptr) } }