blob: 5b7965e9553fef2a74bf002d10576cf3c9438541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// run-pass
#![allow(non_camel_case_types)]
trait double {
fn double(self: Box<Self>) -> usize;
}
impl double for usize {
fn double(self: Box<usize>) -> usize { *self * 2 }
}
pub fn main() {
let x: Box<_> = Box::new(3);
assert_eq!(x.double(), 6);
}
|