(* This used to raise an anomaly in 8.4 and trunk up to 17 April 2013 *)
SetImplicitArguments.
Inductive path (V : Type) (E : V -> V -> Type) (s : V) : V -> Type :=
| NoEdges : path E s s
| AddEdge : forall d d' : V, path E s d -> E d d' -> path E s d'. Inductive G_Vertex := G_v0 | G_v1. Inductive G_Edge : G_Vertex -> G_Vertex -> Set := G_e : G_Edge G_v0 G_v1. Goalforall x1 : G_Edge G_v1 G_v1, @AddEdge _ G_Edge G_v1 _ _ (NoEdges _ _) x1 = NoEdges _ _. intro x1. trydestruct x1. (* now raises a typing error *) Abort.
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 und die Messung sind noch experimentell.