lean2/tests/lean/run/ind_bug.lean
2014-10-02 17:55:34 -07:00

15 lines
205 B
Text

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