RequireImport TestSuite.admit. SetImplicitArguments.
Record foo := { fx : nat }. Set Primitive Projections.
Record bar := { bx : nat }. Definition Foo (f : foo) : f = f. destruct f as [fx]; destruct fx; admit. Defined. Definition Bar (b : bar) : b = b. destruct b as [fx]; destruct fx; admit. Defined. Goalforall f b, Bar b = Bar b -> Foo f = Foo f. intros f b. destruct f, b. simpl.
Fail progress unfold Bar. (* success *)
Fail progress unfold Foo. (* failed to progress *) reflexivity. Qed.
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.