lean4-htt/tests/lean/run/ind7.lean
Daniel Selsam a9b01991c2 feat(frontends/lean/inductive_cmd): new frontend for the inductive cmd
Conflicts:
	src/frontends/lean/CMakeLists.txt
	src/frontends/lean/structure_cmd.h
2016-08-17 07:34:03 -07:00

11 lines
190 B
Text

namespace list
inductive list (A : Type) : Type
| nil : list
| cons : A → list → list
check list.{1}
check list.cons.{1}
check list.rec.{1 1}
end list
check list.list.{1}