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