(* we don't warn on _ prefixed variable *)
Ltac2 foo3 _x := ().
Ltac2 Notation"foo4" x(constr) := ().
(* questionable behaviour: unused variable in untyped notation warns at notation use time *) Unset Ltac2 Typed Notations.
Ltac2 Notation"foo5" x(constr) := (). Set Ltac2 Typed Notations.
Ltac2 foo6 () := foo5 1.
Ltac2 foo7 x := match x with y => () end.
Ltac2 foo8 x := match x with Some x => 1 | None => 2 end.
Ltac2 foo9 x := match x with (a,b) => a end.
Ltac2 foo10 := let x := () in ().
Ltac2 foo11 () := let (x,y) := (1,2) in ().
Ltac2 foo12 () := let (x,y) := (1,2) in x.
Ltac2 foo13 () := let rec x () := 1 with y () := 2 in x.
Ltac2 foo14 () := let rec x () := y () with y () := 2 in x.
(* missing warning for unused letrec (bug?) *)
Ltac2 foo15 () := let rec x () := y () with y () := x () in ().
Ltac2 mutable bar () := ().
(* missing warning for unused "Set as" (bug?) *)
Ltac2 Set bar as bar0 := fun () => ().
Ltac2 foo16 () := ltac1:(ltac2:(x |- ())).
(* no warning for y even though it's bound in the ltac2 context
(ltac2 can't tell that the notation isn't eg "ltac2:(...) + y") *) Notation foo17 x y := ltac2:(exact $preterm:x) (only parsing).
(* the usage of the second "a" binder should not prevent warning for the first "a" *)
Ltac2 foo18 a a := a.
Messung V0.5
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
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.