aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/ideal-features/eapply_evar.v
diff options
context:
space:
mode:
authorGravatar glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-11-02 12:21:44 +0000
committerGravatar glondu <glondu@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-11-02 12:21:44 +0000
commit9b9eb66140e67b4815bffc21984056516b10e111 (patch)
tree2a2260f259a6763052b72e3c040df62995323b65 /test-suite/ideal-features/eapply_evar.v
parente06b69a83b8e109d029a73116039da2c4adb179d (diff)
test-suite/ideal-features/{apply.v -> eapply_evar.v}
...to avoid trouble on case-insensitive filesystems (Closes: #1987) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11531 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/ideal-features/eapply_evar.v')
-rw-r--r--test-suite/ideal-features/eapply_evar.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/ideal-features/eapply_evar.v b/test-suite/ideal-features/eapply_evar.v
new file mode 100644
index 000000000..b10d5dbf9
--- /dev/null
+++ b/test-suite/ideal-features/eapply_evar.v
@@ -0,0 +1,9 @@
+(* Test propagation of evars from subgoal to brother subgoals *)
+
+(* This does not work (oct 2008) because "match goal" sees "?evar = O"
+ and not "O = O"
+
+Lemma eapply_evar : O=O -> 0=O.
+intro H; eapply trans_equal;
+ [apply H | match goal with |- ?x = ?x => reflexivity end].
+Qed.