summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/4378.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/4378.v')
-rw-r--r--test-suite/bugs/closed/4378.v9
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 00000000..9d591655
--- /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.