summaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/3819.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/opened/3819.v')
-rw-r--r--test-suite/bugs/opened/3819.v11
1 files changed, 0 insertions, 11 deletions
diff --git a/test-suite/bugs/opened/3819.v b/test-suite/bugs/opened/3819.v
deleted file mode 100644
index 7105a658..00000000
--- a/test-suite/bugs/opened/3819.v
+++ /dev/null
@@ -1,11 +0,0 @@
-Set Universe Polymorphism.
-
-Record Op := { t : Type ; op : t -> t }.
-
-Canonical Structure OpType : Op := Build_Op Type (fun X => X).
-
-Lemma test1 (X:Type) : eq (op OpType X) X.
-Proof eq_refl.
-
-Lemma test2 (A:Type) : eq (op _ A) A.
-Fail Proof eq_refl.