aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/HoTT_coq_110.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/opened/HoTT_coq_110.v')
-rw-r--r--test-suite/bugs/opened/HoTT_coq_110.v23
1 files changed, 0 insertions, 23 deletions
diff --git a/test-suite/bugs/opened/HoTT_coq_110.v b/test-suite/bugs/opened/HoTT_coq_110.v
deleted file mode 100644
index c9874f898c..0000000000
--- a/test-suite/bugs/opened/HoTT_coq_110.v
+++ /dev/null
@@ -1,23 +0,0 @@
-Module X.
- Inductive paths A (x : A) : A -> Type := idpath : paths A x x.
- Notation "x = y" := (@paths _ x y) : type_scope.
-
- Axioms A B : Type.
- Axiom P : A = B.
- Definition foo : A = B.
- abstract (rewrite <- P; reflexivity).
- (* Error: internal_paths_rew already exists. *)
- Defined. (* Anomaly: Uncaught exception Not_found(_). Please report. *)
-End X.
-
-Module Y.
- Inductive paths A (x : A) : A -> Type := idpath : paths A x x.
- Notation "x = y" := (@paths _ x y) : 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 Defined. (* Anomaly: Uncaught exception Not_found(_). Please report. *)
-Fail End Y.