about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/debuginfo
diff options
context:
space:
mode:
authorThe Miri Conjob Bot <miri@cron.bot>2023-11-23 05:01:28 +0000
committerThe Miri Conjob Bot <miri@cron.bot>2023-11-23 05:01:28 +0000
commit03f19ab7bb9453c45fadcad4097c4badc042689c (patch)
tree1210fbbb120a2831ec352128b5dadcf101659eed /compiler/rustc_codegen_ssa/src/debuginfo
parent804afa4a94f4e9a502531c19c9a150eb1d33f4f6 (diff)
parent360bafad68cfea2682cf016070e533c45a00150f (diff)
downloadrust-03f19ab7bb9453c45fadcad4097c4badc042689c.tar.gz
rust-03f19ab7bb9453c45fadcad4097c4badc042689c.zip
Merge from rustc
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/debuginfo')
-rw-r--r--compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
index 3c7e8873b4d..839cc4dabe3 100644
--- a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
+++ b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
@@ -216,7 +216,7 @@ fn push_debuginfo_type_name<'tcx>(
                 output.push(']');
             }
         }
-        ty::Dynamic(ref trait_data, ..) => {
+        ty::Dynamic(trait_data, ..) => {
             let auto_traits: SmallVec<[DefId; 4]> = trait_data.auto_traits().collect();
 
             let has_enclosing_parens = if cpp_like_debuginfo {