lean2/tests/lean/run/vars_anywhere.lean

12 lines
135 B
Text
Raw Normal View History

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