File: test_proof_using.v

package info (click to toggle)
proofgeneral 4.5-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 5,172 kB
  • sloc: lisp: 33,783; makefile: 388; sh: 118; perl: 109
file content (12 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12


Section S.
  Variable proof:nat.
  Hypothesis h: proof = proof.
  Lemma width_nonneg : proof = proof.
  Proof. (*proof*)
    pose proof @h. apply H.
    (*qed*)
  Qed.
  
End S.