DEBSOURCES
Skip Quicknav
sources / coq-doc / 8.16.1-1 / test-suite / success / proof_using_noinit.v
123456789
(* -*- coq-prog-args: ("-noinit"); -*- *) Section A. Variable A : Prop. Hypothesis a : A. Lemma b : A. Proof using a. Admitted. End A.