Skip to content

Commit

Permalink
Fix a missing case for new Blank
Browse files Browse the repository at this point in the history
  • Loading branch information
dolio committed Jan 29, 2024
1 parent 2778dcc commit e1f28f8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions unison-core/src/Unison/Term.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1594,6 +1594,7 @@ instance (Show v, Show a) => Show (F v a0 p a) where
B.Recorded (B.Placeholder _ r) -> s ("_" ++ r)
B.Recorded (B.Resolve _ r) -> s r
B.Recorded (B.MissingResultPlaceholder _) -> s "_"
B.Retain -> s "_"
go _ (Ref r) = s "Ref(" <> shows r <> s ")"
go _ (TermLink r) = s "TermLink(" <> shows r <> s ")"
go _ (TypeLink r) = s "TypeLink(" <> shows r <> s ")"
Expand Down

0 comments on commit e1f28f8

Please sign in to comment.