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