usecrate::TestMap;useaccio::*;accio_emit!{
mods {modmod_one;// this is the catch:
// since this code will be placed
// into the caller (main.rs); all paths
// are relative to the caller. so even though
// the init function is RIGHT HERE; we cannot
// just say init.
usecrate::mod_one::init as init_one;}
initializers{
init_one,}}pubfninit(m:&mut TestMap){
m.insert("one",1);}