This commit is contained in:
b-naber 2022-08-09 19:12:14 +02:00
parent cc4dd6fc9f
commit 52830efdcc

View File

@ -1513,6 +1513,10 @@ fn pretty_print_const_valtree(
}
return Ok(self);
}
(ty::ValTree::Leaf(leaf), ty::Ref(_, inner_ty, _)) => {
p!(write("&"));
return self.pretty_print_const_scalar_int(leaf, *inner_ty, print_ty);
}
(ty::ValTree::Leaf(leaf), _) => {
return self.pretty_print_const_scalar_int(leaf, ty, print_ty);
}