summaryrefslogtreecommitdiff
path: root/test-suite/success/Conjecture.v
blob: ea4b5ff761ea715ae5752d225fc7c249603b5f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(* Check keywords Conjecture and Admitted are recognized *)

Conjecture c : forall n : nat, n = 0.

Check c.

Theorem d : forall n : nat, n = 0.
Proof.
  induction n.
  reflexivity.
  assert (H : False).
  2: destruct H.
Admitted.