blob: 7368a7b2f845b97cc7a8d05f06c07f522611b8e1 [file] [log] [blame] [edit]
//@ run-pass
trait U { fn f(self); }
impl U for isize { fn f(self) {} }
pub fn main() { 4.f(); }