We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b7d21 commit 7d40019Copy full SHA for 7d40019
src/librustc_mir/util/pretty.rs
@@ -561,7 +561,7 @@ fn write_mir_sig(
561
562
ty::print::with_forced_impl_filename_line(|| {
563
// see notes on #41697 elsewhere
564
- write!(w, " {}", tcx.def_path_str(src.def_id()))
+ write!(w, "{}", tcx.def_path_str(src.def_id()))
565
})?;
566
567
if src.promoted.is_none() && is_function {
src/test/mir-opt/retag.rs
@@ -114,7 +114,7 @@ fn main() {
114
// }
115
// END rustc.main-{{closure}}.EraseRegions.after.mir
116
// START rustc.ptr-drop_in_place.Test.SimplifyCfg-make_shim.after.mir
117
-// fn std::intrinsics::drop_in_place(_1: *mut Test) -> () {
+// fn std::intrinsics::drop_in_place(_1: *mut Test) -> () {
118
// ...
119
// bb0: {
120
// Retag([raw] _1);
0 commit comments