diff options
| -rw-r--r-- | test-suite/bugs/closed/3298.v (renamed from test-suite/bugs/opened/3298.v) | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test-suite/bugs/opened/3298.v b/test-suite/bugs/closed/3298.v index bce7c3f23b..3a7de45670 100644 --- a/test-suite/bugs/opened/3298.v +++ b/test-suite/bugs/closed/3298.v @@ -4,8 +4,7 @@ Module JGross. Goal forall H : False, match H return Set with end. Proof. intros. - Fail solve [ eauto ]. (* No applicable tactic *) - admit. + solve [ eauto ]. Qed. End JGross. @@ -17,7 +16,6 @@ Section BenDelaware. Qed. Goal forall (H : False), match H return Set with end. Proof. - Fail solve [ eauto ] . - admit. + solve [ eauto ] . Qed. End BenDelaware. |
