aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/success/change.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-02-06 17:56:32 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-02-06 17:56:32 +0000
commitb46115bd2507909541d804073b34c8107d3b1290 (patch)
tree1ae5c17ddfe3b00c2ba234ef4af713467130e901 /test-suite/success/change.v
parent4a573f78ce747f7f7fac36f667dce1d829dc3bed (diff)
Correction d'un bug à l'interprétation de "change" (on exigeait que
l'argument soit un type même lorsque c'était un terme qu'on convertissait). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10518 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/success/change.v')
-rw-r--r--test-suite/success/change.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/success/change.v b/test-suite/success/change.v
new file mode 100644
index 000000000..cea017122
--- /dev/null
+++ b/test-suite/success/change.v
@@ -0,0 +1,6 @@
+(* A few tests of the syntax of clauses and of the interpretation of change *)
+
+Goal let a := 0+0 in a=a.
+intro.
+change 0 in (value of a).
+change ((fun A:Type => A) nat) in (type of a).