summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/2881.v
blob: b4f09305b4bd4c295c8a444d4602edb4e04894c5 (plain)
1
2
3
4
5
6
7
(* About scoping of pattern variables in strict/non-strict mode *)

Ltac eta_red := change (fun a => ?f0 a) with f0.
Goal forall T1 T2 (f : T1 -> T2), (fun x => f x) = f.
intros.
eta_red.
Abort.