diff options
| author | Pierre-Marie Pédrot | 2018-06-15 14:15:40 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2018-06-15 14:15:40 +0200 |
| commit | f2e2d1d9f00ab731bd2bbe1dd57d685ac5024204 (patch) | |
| tree | 21d11d821734adcdbccf9927089da9f84a367e28 /test-suite/bugs | |
| parent | 31e13998542941040343cb81787a1d7c865d5b65 (diff) | |
| parent | 2a239725f493e643d0f26455293e6ca295f4dc92 (diff) | |
Merge PR #7813: Workaround for #2800: handling non-value arguments in tactics.
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/2800.v | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/2800.v b/test-suite/bugs/closed/2800.v index 2ee438934e..54c75e344c 100644 --- a/test-suite/bugs/closed/2800.v +++ b/test-suite/bugs/closed/2800.v @@ -4,3 +4,16 @@ intuition match goal with | |- _ => idtac " foo" end. + + lazymatch goal with _ => idtac end. + match goal with _ => idtac end. + unshelve lazymatch goal with _ => idtac end. + unshelve match goal with _ => idtac end. + unshelve (let x := I in idtac). +Abort. + +Require Import ssreflect. + +Goal True. +match goal with _ => idtac end => //. +Qed. |
