Skip to content

Commit 0ce96bd

Browse files
committed
Fix bug in fmt_diff_with
1 parent 907ce72 commit 0ce96bd

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_mir/src/dataflow/framework

1 file changed

+1
-1
lines changed

compiler/rustc_mir/src/dataflow/framework/fmt.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub trait DebugWithContext<C>: Eq + fmt::Debug {
3333
}
3434

3535
write!(f, "\u{001f}-")?;
36-
self.fmt_with(ctxt, f)
36+
old.fmt_with(ctxt, f)
3737
}
3838
}
3939

0 commit comments

Comments
 (0)