We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6de928d commit 32185deCopy full SHA for 32185de
compiler/rustc_middle/src/mir/pretty.rs
@@ -1159,7 +1159,7 @@ impl<'tcx> Debug for Operand<'tcx> {
1159
use self::Operand::*;
1160
match *self {
1161
Constant(ref a) => write!(fmt, "{a:?}"),
1162
- Copy(ref place) => write!(fmt, "{place:?}"),
+ Copy(ref place) => write!(fmt, "copy {place:?}"),
1163
Move(ref place) => write!(fmt, "move {place:?}"),
1164
}
1165
0 commit comments