aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMaxime Dénès2017-05-10 10:23:12 +0200
committerMaxime Dénès2017-05-10 10:23:12 +0200
commit3b6d89acf4f233d0ed33f89c4e60bcd68e0e2820 (patch)
treec65486dc0cc23feb029c33f66e937994d7fce4ae /test-suite
parent9d423562a5f83563198f3141500af4c97103c2bf (diff)
parent9b54bda96f51cc5387f195614620fae53dec5bd1 (diff)
Merge PR#604: FIx bug #5300: Anomaly: Uncaught exception Not_found" in "Print Assumptions".
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/5300.v39
1 files changed, 39 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5300.v b/test-suite/bugs/closed/5300.v
new file mode 100644
index 0000000000..18202df508
--- /dev/null
+++ b/test-suite/bugs/closed/5300.v
@@ -0,0 +1,39 @@
+Module Test1.
+
+ Module Type Foo.
+ Parameter t : unit.
+ End Foo.
+
+ Module Bar : Foo.
+ Module Type Rnd. Definition t' : unit := tt. End Rnd.
+ Module Rnd_inst : Rnd. Definition t' : unit := tt. End Rnd_inst.
+ Definition t : unit.
+ exact Rnd_inst.t'.
+ Qed.
+ End Bar.
+
+ Print Assumptions Bar.t.
+End Test1.
+
+Module Test2.
+ Module Type Foo.
+ Parameter t1 : unit.
+ Parameter t2 : unit.
+ End Foo.
+
+ Module Bar : Foo.
+ Inductive ind := .
+ Definition t' : unit := tt.
+ Definition t1 : unit.
+ Proof.
+ exact ((fun (_ : ind -> False) => tt) (fun H => match H with end)).
+ Qed.
+ Definition t2 : unit.
+ Proof.
+ exact t'.
+ Qed.
+ End Bar.
+
+ Print Assumptions Bar.t1.
+ Print Assumptions Bar.t1.
+End Test2.