summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/gh6384.v
blob: cec84642fb3bc57878fe3108e988ca8d35278e55 (plain)
1
2
3
4
5
Theorem test (A:Prop) : A \/ A -> A.
  Fail intro H; destruct H as H.
  (* Error: Disjunctive/conjunctive introduction pattern expected. *)
  Fail intros H; destruct H as H.
Abort.