about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/ty/structural_impls.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2023-04-22 00:08:38 +0000
committerMichael Goulet <michael@errs.io>2023-04-25 19:53:09 +0000
commitbb99cdc7cd3f2c0b1ab533735604ade7c2fdf9ad (patch)
treefc0751a2f046c9a2cc9c0f90ca73733f37da065d /compiler/rustc_middle/src/ty/structural_impls.rs
parenta7aa20517c80161a2ffe7c0c25fc2e0140c43c90 (diff)
downloadrust-bb99cdc7cd3f2c0b1ab533735604ade7c2fdf9ad.tar.gz
rust-bb99cdc7cd3f2c0b1ab533735604ade7c2fdf9ad.zip
vars are ?
Diffstat (limited to 'compiler/rustc_middle/src/ty/structural_impls.rs')
-rw-r--r--compiler/rustc_middle/src/ty/structural_impls.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/ty/structural_impls.rs b/compiler/rustc_middle/src/ty/structural_impls.rs
index a2611022406..b35b514d795 100644
--- a/compiler/rustc_middle/src/ty/structural_impls.rs
+++ b/compiler/rustc_middle/src/ty/structural_impls.rs
@@ -95,7 +95,7 @@ impl<'tcx> fmt::Debug for ty::FnSig<'tcx> {
 
 impl<'tcx> fmt::Debug for ty::ConstVid<'tcx> {
     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
-        write!(f, "_#{}c", self.index)
+        write!(f, "?{}c", self.index)
     }
 }