5 lines
77 B
Rust
5 lines
77 B
Rust
trait me {
|
|
fn me() -> uint;
|
|
}
|
|
impl uint: me { fn me() -> uint { self } }
|