rust/src/test/auxiliary/ambig_impl_2_lib.rs
2012-08-08 18:19:24 -07:00

5 lines
77 B
Rust

trait me {
fn me() -> uint;
}
impl uint: me { fn me() -> uint { self } }