rust/src/test/auxiliary/issue_2242_a.rs

11 lines
161 B
Rust
Raw Normal View History

2012-06-20 18:23:45 -05:00
#[link(name = "a", vers = "0.1")];
#[crate_type = "lib"];
trait to_strz {
fn to_strz() -> ~str;
2012-06-20 18:23:45 -05:00
}
impl ~str: to_strz {
fn to_strz() -> ~str { self }
2012-06-20 18:23:45 -05:00
}