about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/debuginfo
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-12-24 00:51:51 +0000
committerbors <bors@rust-lang.org>2024-12-24 00:51:51 +0000
commitf3343420c813a3dad6746e274137ba51bf97f063 (patch)
treeacd07ddc77abe529bb44f588d71f7bb43b4655c1 /compiler/rustc_codegen_ssa/src/debuginfo
parent65fe42a5f46a17ac63b21684b7ec8327f1a4c86b (diff)
parent9a1c5eb5b385adb3cd04af0049cbf5c225cefdc3 (diff)
downloadrust-f3343420c813a3dad6746e274137ba51bf97f063.tar.gz
rust-f3343420c813a3dad6746e274137ba51bf97f063.zip
Auto merge of #134625 - compiler-errors:unsafe-binders-ty, r=oli-obk
Begin to implement type system layer of unsafe binders

Mostly TODOs, but there's a lot of match arms that are basically just noops so I wanted to split these out before I put up the MIR lowering/projection part of this logic.

r? oli-obk

Tracking:

- https://github.com/rust-lang/rust/issues/130516
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/debuginfo')
-rw-r--r--compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
index cf72c2ed742..869798d8be1 100644
--- a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
+++ b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
@@ -432,6 +432,7 @@ fn push_debuginfo_type_name<'tcx>(
                 push_closure_or_coroutine_name(tcx, def_id, args, qualified, output, visited);
             }
         }
+        ty::UnsafeBinder(_) => todo!("FIXME(unsafe_binders)"),
         ty::Param(_)
         | ty::Error(_)
         | ty::Infer(_)