rust/src/test/auxiliary/issue_2242_c.rs

11 lines
156 B
Rust
Raw Normal View History

2012-06-20 18:23:45 -05:00
#[link(name = "c", vers = "0.1")];
#[crate_type = "lib"];
use a;
import a::to_strz;
2012-06-20 18:23:45 -05:00
impl bool: to_strz {
fn to_strz() -> ~str { fmt!{"%b", self} }
2012-06-20 18:23:45 -05:00
}