aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/bug_4205.v
blob: b6cf214cf940b7eaf8618e6727f401b5905247da (plain)
1
2
3
4
5
6
7
8
9
(* Testing a regression from 8.5beta1 to 8.5beta2 in evar-evar tactic unification problems *)


Inductive test : nat -> nat -> nat -> nat -> Prop :=
  | test1 : forall m n, test m n m n.

Goal test 1 2 3 4.
erewrite f_equal2 with (f := fun k l => test _ _ k l).
Abort.