diff options
Diffstat (limited to 'test-suite')
-rw-r--r-- | test-suite/bugs/closed/6313.v | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/6313.v b/test-suite/bugs/closed/6313.v new file mode 100644 index 000000000..1715e7f90 --- /dev/null +++ b/test-suite/bugs/closed/6313.v @@ -0,0 +1,20 @@ +(* Former open goals in nested proofs were lost *) + +Inductive foo := a | b | c. +Goal foo -> foo. + intro x. + simple refine (match x with + | a => _ + | b => ltac:(exact b) + | c => _ + end); [exact a|exact c]. +Abort. + +(* Another example *) + +Goal (True/\0=0 -> True) -> True. + intro f. + refine + (f ltac:(split; only 1:exact I)). + reflexivity. +Qed. |