14 lines
180 B
Text
14 lines
180 B
Text
open nat
|
|
|
|
namespace N1
|
|
definition foo (a : nat) := a
|
|
end N1
|
|
|
|
namespace N2
|
|
definition foo (a : nat) := a
|
|
end N2
|
|
|
|
open N1 N2
|
|
|
|
definition boo1 := N1.foo
|
|
definition boo2 := N2.foo
|