1
Fork 0

Print def_id on EarlyBoundRegion debug

This commit is contained in:
Santiago Pastorino 2023-06-21 18:56:34 -03:00
parent 006a26c0b5
commit 3ef510ca80
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF
2 changed files with 3 additions and 3 deletions

View file

@ -1584,7 +1584,7 @@ pub struct EarlyBoundRegion {
impl fmt::Debug for EarlyBoundRegion {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}, {}", self.index, self.name)
write!(f, "{:?}, {}, {}", self.def_id, self.index, self.name)
}
}