blob: f9d241acf73455f5cb8370062b1c08c3eaa18fa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(* (c) Copyright 2006-2015 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
Require Import mathcomp.ssreflect.ssreflect.
Axiom T : Type.
Definition C (P : T -> Prop) := forall x, P x.
Axiom P : T -> T -> Prop.
Lemma foo : C (fun x => forall y, let z := x in P y x).
move=> a b.
match goal with |- (let y := _ in _) => idtac end.
Admitted.
|