2014-08-27 16:30:30 -07: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 16:00:38 -07:00
|
|
|
open N1 N2
|
2014-10-02 16:20:52 -07:00
|
|
|
constant N : Type.{1}
|
|
|
|
constants a b : N
|
2014-08-27 16:30:30 -07:00
|
|
|
check @pr
|
|
|
|
check @pr N a b
|
|
|
|
check pr a b
|