2014-08-27 23:30:30 +00:00
|
|
|
namespace N1
|
|
|
|
definition pr {A : Type} (a b : A) := a
|
|
|
|
end N1
|
|
|
|
|
|
|
|
namespace N2
|
|
|
|
definition pr {A : Type} (a b : A) := b
|
|
|
|
end N2
|
|
|
|
|
2014-09-03 23:00:38 +00:00
|
|
|
open N1 N2
|
2014-10-02 23:20:52 +00:00
|
|
|
constant N : Type.{1}
|
|
|
|
constants a b : N
|
2014-08-27 23:30:30 +00:00
|
|
|
check @pr
|
|
|
|
check @pr N a b
|
|
|
|
check pr a b
|