Inductive trip := Z | L (_:trip) (_:trip) | R (_:trip).
Typefun x:bool => fix foo (n:trip) : x = x := eq_refl with bar (n:trip) : x = x := match n with
| Z => eq_refl
| L k _ => bar k
| R k => foo k end
for foo. (* Error: In pattern-matching on term "n" the branch for constructor "R" has type "fun _ : trip => _UNBOUND_REL_6 = _UNBOUND_REL_6" which should be "fun _ : trip => x = x".
*)
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.