aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/HoTT_coq_111.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/opened/HoTT_coq_111.v')
-rw-r--r--test-suite/bugs/opened/HoTT_coq_111.v27
1 files changed, 0 insertions, 27 deletions
diff --git a/test-suite/bugs/opened/HoTT_coq_111.v b/test-suite/bugs/opened/HoTT_coq_111.v
deleted file mode 100644
index deb8e61235..0000000000
--- a/test-suite/bugs/opened/HoTT_coq_111.v
+++ /dev/null
@@ -1,27 +0,0 @@
-Module X.
- Set Universe Polymorphism.
- Inductive paths A (x : A) : forall _ : A, Type := idpath : paths A x x.
- Notation "x = y" := (@paths _ x y) (at level 70, no associativity) : type_scope.
-
- Axioms A B : Type.
- Axiom P : A = B.
- Definition foo : A = B.
- abstract (rewrite <- P; reflexivity).
- (* Error: internal_paths_rew already exists. *)
- Fail Fail Defined. (* Anomaly: Uncaught exception Not_found(_). Please report. *)
- Admitted.
-End X.
-
-Module Y.
- Set Universe Polymorphism.
- Inductive paths A (x : A) : forall _ : A, Type := idpath : paths A x x.
- Notation "x = y" := (@paths _ x y) (at level 70, no associativity) : type_scope.
-
- Axioms A B : Type.
- Axiom P : A = B.
- Definition foo : (A = B) * (A = B).
- split; abstract (rewrite <- P; reflexivity).
- (* Error: internal_paths_rew already exists. *)
- Fail Fail Defined. (* Anomaly: Uncaught exception Not_found(_). Please report. *)
- Admitted.
-End Y.