diff options
author | Samuel Mimram <smimram@debian.org> | 2006-04-28 14:59:16 +0000 |
---|---|---|
committer | Samuel Mimram <smimram@debian.org> | 2006-04-28 14:59:16 +0000 |
commit | 3ef7797ef6fc605dfafb32523261fe1b023aeecb (patch) | |
tree | ad89c6bb57ceee608fcba2bb3435b74e0f57919e /test-suite/failure/coqbugs0266.v | |
parent | 018ee3b0c2be79eb81b1f65c3f3fa142d24129c8 (diff) |
Imported Upstream version 8.0pl3+8.1alphaupstream/8.0pl3+8.1alpha
Diffstat (limited to 'test-suite/failure/coqbugs0266.v')
-rw-r--r-- | test-suite/failure/coqbugs0266.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test-suite/failure/coqbugs0266.v b/test-suite/failure/coqbugs0266.v index 2ac6c4f0..79eef5c9 100644 --- a/test-suite/failure/coqbugs0266.v +++ b/test-suite/failure/coqbugs0266.v @@ -1,7 +1,7 @@ (* It is forbidden to erase a variable (or a local def) that is used in the current goal. *) Section S. -Local a:=O. -Definition b:=a. -Goal b=b. -Clear a. +Let a := 0. +Definition b := a. +Goal b = b. +clear a. |