lean2/tests/lean/run/vars_anywhere.lean

11 lines
138 B
Text

variable {A : Type}
definition id (a : A) := a
check @id
inductive list :=
| nil : list
| cons : A → list → list
check @list.cons