lean2/tests/lean/run/vars_anywhere.lean
2014-10-10 16:16:19 -07:00

11 lines
135 B
Text

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