lean2/tests/lean/run/vars_anywhere.lean

10 lines
110 B
Text
Raw Normal View History

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