2012-07-11 20:38:12 -05:00
|
|
|
#[link(name = "crate_method_reexport_grrrrrrr2")];
|
|
|
|
|
|
|
|
export rust;
|
|
|
|
|
|
|
|
import name_pool::methods;
|
|
|
|
|
|
|
|
mod name_pool {
|
|
|
|
|
|
|
|
type name_pool = ();
|
|
|
|
|
|
|
|
impl methods for name_pool {
|
2012-07-14 00:57:48 -05:00
|
|
|
fn add(s: ~str) {
|
2012-07-11 20:38:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod rust {
|
|
|
|
|
|
|
|
export rt;
|
|
|
|
export methods;
|
|
|
|
|
|
|
|
type rt = @();
|
|
|
|
|
|
|
|
impl methods for rt {
|
|
|
|
fn cx() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|