lean4-htt/tests/lean/run/vars_anywhere.lean
2016-06-10 18:29:41 -07:00

9 lines
110 B
Text

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