lean4-htt/tests/lean/run/ind_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

14 lines
186 B
Text

constant N : Type.{1}
constant I : Type.{1}
namespace foo
inductive p (a : N) : Prop
| intro : p
end foo
open foo
namespace bla
inductive p (a : I) : Prop
| intro : p
end bla