rust/src/test/auxiliary/ambig_impl_2_lib.rs

5 lines
77 B
Rust
Raw Normal View History

trait me {
fn me() -> uint;
}
2012-08-07 20:10:06 -05:00
impl uint: me { fn me() -> uint { self } }