14 lines
192 B
Text
14 lines
192 B
Text
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
|