aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed
diff options
context:
space:
mode:
authorGravatar msozeau <msozeau@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-18 15:26:08 +0000
committerGravatar msozeau <msozeau@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-18 15:26:08 +0000
commitc0b7b5b8127955fa2cb5d70bd0a84aec50f8e015 (patch)
treeae0d4b683aa3548c928ec8ef93be4b61996b9822 /test-suite/bugs/closed
parentae1960c4fb1c65cd68fe39bc2f6d180682625d72 (diff)
Finer fix for bug 3017, mark unresolvability only of goals that are
instances of metas in clenvtac. Makes Math-Classes compile again. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16429 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/bugs/closed')
-rw-r--r--test-suite/bugs/closed/shouldsucceed/3017.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/3017.v b/test-suite/bugs/closed/shouldsucceed/3017.v
new file mode 100644
index 000000000..63a06bd3d
--- /dev/null
+++ b/test-suite/bugs/closed/shouldsucceed/3017.v
@@ -0,0 +1,6 @@
+Class A := {}.
+ Class B {T} `(A) := { B_intro : forall t t' : T, t = t' }.
+ Lemma foo T (t t' : T) : t = t'.
+ erewrite @B_intro.
+ reflexivity.
+ Abort.