lean4-htt/tests/lean/run/empty_match_bug.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
196 B
Text

open nat
inductive Fin : nat → Type
| fz : Π n, Fin (succ n)
| fs : Π {n}, Fin n → Fin (succ n)
open Fin
definition case0 {C : Fin zero → Type} (f : Fin zero) : C f :=
match f with
end