rust/src/test/auxiliary/issue_2242_a.rs
2012-08-13 18:59:48 -07:00

11 lines
161 B
Rust

#[link(name = "a", vers = "0.1")];
#[crate_type = "lib"];
trait to_strz {
fn to_strz() -> ~str;
}
impl ~str: to_strz {
fn to_strz() -> ~str { self }
}