lean4-htt/tests/lean/acc.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

6 lines
166 B
Text

namespace play
inductive acc (A : Type) (R : A → A → Prop) : A → Prop
| intro : ∀ (x : A), (∀ (y : A), R y x → acc y) → acc x
check @acc.rec
end play