Skip to content

Commit

Permalink
Pass the test
Browse files Browse the repository at this point in the history
  • Loading branch information
toku-sa-n committed Aug 12, 2023
1 parent 22ce0ed commit 90612f6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/ppast.ml
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,9 @@ let pp_raw_atomic_tactic_expr printer (expr : Tacexpr.raw_atomic_tactic_expr) =
write printer "destruct ";
pp_induction_clause_list printer clause_list;
write printer "."
| Tacexpr.TacIntroPattern
(false, [ CAst.{ v = Tactypes.IntroForthcoming _; loc = _ } ]) ->
write printer "intros."
| Tacexpr.TacIntroPattern (false, exprs) ->
write printer "intros ";
spaced printer (fun expr -> pp_intro_pattern_expr printer expr.v) exprs;
Expand Down

0 comments on commit 90612f6

Please sign in to comment.