blob: 323021dea195aacd6d091334db1072afa08f87f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
(* Automatic computing of guard in "Theorem with"; check that guard is not
computed when the user explicitly indicated it *)
Inductive T : Set :=
| v : T.
Definition f (s:nat) (t:T) : nat.
fix 2.
intros s t.
refine
match t with
| v => s
end.
Defined.
Lemma test :
forall s, f s v = s.
Proof.
reflexivity.
Qed.
|