2014-08-22 22:23:33 +00:00
|
|
|
import data.nat
|
2014-09-03 23:00:38 +00:00
|
|
|
open nat
|
2014-08-22 22:23:33 +00:00
|
|
|
|
|
|
|
namespace N1
|
|
|
|
definition foo (a : nat) := a
|
|
|
|
end N1
|
|
|
|
|
|
|
|
namespace N2
|
|
|
|
definition foo (a : nat) := a
|
|
|
|
end N2
|
|
|
|
|
2014-09-03 23:00:38 +00:00
|
|
|
open N1 N2
|
2014-08-22 22:23:33 +00:00
|
|
|
|
2014-09-03 23:00:38 +00:00
|
|
|
definition boo := foo
|