lean4-htt/tests/lean/run/vars_anywhere.lean
2017-03-09 18:41:19 -08:00

9 lines
109 B
Text

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