1 2 3 4 5 6 7 8 9 10 11
// run-pass trait Tr : Sized { fn _method_on_numbers(self) {} } impl Tr for i32 {} fn main() { 42._method_on_numbers(); }