Skip to content

Commit

Permalink
Implement Debug for DefIdForest
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Jan 16, 2021
1 parent 6417760 commit 0295237
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -18,7 +18,7 @@ use DefIdForest::*;
/// We store the minimal set of `DefId`s required to represent the whole set. If A and B are
/// `DefId`s in the `DefIdForest`, and A is a parent of B, then only A will be stored. When this is
/// used with `type_uninhabited_from`, there will very rarely be more than one `DefId` stored.
#[derive(Clone, HashStable)]
#[derive(Clone, HashStable, Debug)]
pub enum DefIdForest {
Empty,
Single(DefId),
Expand Down

0 comments on commit 0295237

Please sign in to comment.