10 lines
151 B
Rust
10 lines
151 B
Rust
#[link(name = "b", vers = "0.1")];
|
|
#[crate_type = "lib"];
|
|
|
|
use a;
|
|
use a::to_strz;
|
|
|
|
impl int: to_strz {
|
|
fn to_strz() -> ~str { fmt!("%?", self) }
|
|
}
|