iface bar { fn dup() -> self; fn blah(); } impl of bar for int { fn dup() -> int { self } fn blah() {} } impl of bar for uint { fn dup() -> uint { self } fn blah() {} } impl of bar for uint { fn dup() -> uint { self } fn blah() {} } fn main() { 10.dup::(); //! ERROR does not take type parameters 10.blah::(); //! ERROR incorrect number of type parameters 10u.dup(); //! ERROR multiple applicable methods (10 as bar).dup(); //! ERROR contains a self type }