diff options
| author | Pierre-Marie Pédrot | 2016-01-24 14:18:40 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-01-24 14:18:40 +0100 |
| commit | e7852396a452f446135183ec3e1743b731d781c0 (patch) | |
| tree | f4a8c5e6ec14b1f8fdc690624a600fb7b6d3d441 | |
| parent | cb30837323aa462df24ad6668790f67b9bf20b5d (diff) | |
Adding a test for bug #4378.
| -rw-r--r-- | test-suite/bugs/closed/4378.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4378.v b/test-suite/bugs/closed/4378.v new file mode 100644 index 0000000000..9d59165562 --- /dev/null +++ b/test-suite/bugs/closed/4378.v @@ -0,0 +1,9 @@ +Tactic Notation "epose" open_constr(a) := + let a' := fresh in + pose a as a'. +Tactic Notation "epose2" open_constr(a) tactic3(tac) := + let a' := fresh in + pose a as a'. +Goal True. + epose _. Undo. + epose2 _ idtac. |
