aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/ltac.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-10-11 15:05:10 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-10-11 15:21:33 +0200
commitae5305a4837cce3c7fd61b92ce8110ac66ec2750 (patch)
tree3026a62e18044a3126521c0c72eefe8304184262 /test-suite/output/ltac.v
parent2e07ecfce221840047b2f95c93acdb79a4fe0985 (diff)
Refining 0c320e79ba30 in fixing interpretation of constr under binders
which was broken after it became possible to have binding names themselves bound to ltac variables (2fcc458af16b). Interpretation was corrected, but error message was damaged.
Diffstat (limited to 'test-suite/output/ltac.v')
-rw-r--r--test-suite/output/ltac.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/output/ltac.v b/test-suite/output/ltac.v
new file mode 100644
index 000000000..567e21edb
--- /dev/null
+++ b/test-suite/output/ltac.v
@@ -0,0 +1,8 @@
+(* This used to refer to b instead of z sometimes between 8.4 and 8.5beta3 *)
+Goal True.
+Fail let T := constr:((fun a b : nat => a+b) 1 1) in
+ lazymatch T with
+ | (fun x z => ?y) 1 1
+ => pose ((fun x _ => y) 1 1)
+ end.
+Abort.