diff options
| author | Gaëtan Gilbert | 2020-05-14 17:25:23 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-05-14 17:25:23 +0200 |
| commit | cc54af3842cbf99f169f7937b0e31f737652bd3a (patch) | |
| tree | 7812c281b7c0012e9dcb3e7e2f78f11950b2e9e2 /test-suite | |
| parent | e36c415f5a9509f050246a62e6198bc5b7b193d3 (diff) | |
| parent | 5c3b9f9082b2a628bbf877dffae5ac38b5923f89 (diff) | |
Merge PR #12296: Fixes #12234: wrong environment for Show Proof
Reviewed-by: SkySkimmer
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12234.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12234.v b/test-suite/bugs/closed/bug_12234.v new file mode 100644 index 0000000000..b99c5d524e --- /dev/null +++ b/test-suite/bugs/closed/bug_12234.v @@ -0,0 +1,9 @@ +(* Checking a Show Proof bug *) +Section S. +Variable A:Prop. +Theorem thm (a:A) : True. +assert (b:=a). +clear A a b. +Show Proof. +Abort. +End S. |
