rust/src/test/auxiliary/issue_2242_b.rs

10 lines
158 B
Rust
Raw Normal View History

2012-06-20 18:23:45 -05:00
#[link(name = "b", vers = "0.1")];
#[crate_type = "lib"];
extern mod a;
2012-09-05 14:32:05 -05:00
use a::to_strz;
2012-06-20 18:23:45 -05:00
impl int: to_strz {
2012-08-22 19:24:52 -05:00
fn to_strz() -> ~str { fmt!("%?", self) }
2012-06-20 18:23:45 -05:00
}