lean4-htt/old_tests/tests/lean/run/ind_bug.lean
2018-04-10 12:56:55 -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