summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/7113.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/7113.v')
-rw-r--r--test-suite/bugs/closed/7113.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/7113.v b/test-suite/bugs/closed/7113.v
new file mode 100644
index 00000000..976e60f2
--- /dev/null
+++ b/test-suite/bugs/closed/7113.v
@@ -0,0 +1,10 @@
+Require Import Program.Tactics.
+Section visibility.
+
+ (* used to anomaly *)
+ Program Let Fixpoint ev' (n : nat) : bool := _.
+ Next Obligation. exact true. Qed.
+
+ Check ev'.
+End visibility.
+Fail Check ev'.