From 8fa5a0351954cc561fa751901fe0f06eeac4ce7a Mon Sep 17 00:00:00 2001 From: Matthieu Sozeau Date: Tue, 17 Jun 2014 16:14:09 +0200 Subject: HoTT coq bug #82 already fixed. --- test-suite/bugs/closed/HoTT_coq_082.v | 19 +++++++++++++++++++ test-suite/bugs/opened/HoTT_coq_082.v | 19 ------------------- 2 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 test-suite/bugs/closed/HoTT_coq_082.v delete mode 100644 test-suite/bugs/opened/HoTT_coq_082.v (limited to 'test-suite') diff --git a/test-suite/bugs/closed/HoTT_coq_082.v b/test-suite/bugs/closed/HoTT_coq_082.v new file mode 100644 index 0000000000..ccba22cae5 --- /dev/null +++ b/test-suite/bugs/closed/HoTT_coq_082.v @@ -0,0 +1,19 @@ +Set Implicit Arguments. +Set Universe Polymorphism. + +Record category := + { ob : Type }. + +Existing Class category. (* +Toplevel input, characters 0-24: +Anomaly: Mismatched instance and context when building universe substitution. +Please report. *) + +Record category' := + { ob' : Type; + hom' : ob' -> ob' -> Type }. + +Existing Class category'. (* +Toplevel input, characters 0-24: +Anomaly: Mismatched instance and context when building universe substitution. +Please report. *) diff --git a/test-suite/bugs/opened/HoTT_coq_082.v b/test-suite/bugs/opened/HoTT_coq_082.v deleted file mode 100644 index 257afe0b6e..0000000000 --- a/test-suite/bugs/opened/HoTT_coq_082.v +++ /dev/null @@ -1,19 +0,0 @@ -Set Implicit Arguments. -Set Universe Polymorphism. - -Record category := - { ob : Type }. - -Fail Existing Class category. (* -Toplevel input, characters 0-24: -Anomaly: Mismatched instance and context when building universe substitution. -Please report. *) - -Record category' := - { ob' : Type; - hom' : ob' -> ob' -> Type }. - -Fail Existing Class category'. (* -Toplevel input, characters 0-24: -Anomaly: Mismatched instance and context when building universe substitution. -Please report. *) -- cgit v1.2.3