2012-05-02 23:14:26 -05:00
|
|
|
// xfail-fast aux-build
|
|
|
|
// aux-build:ambig_impl_2_lib.rs
|
|
|
|
use ambig_impl_2_lib;
|
|
|
|
import ambig_impl_2_lib::methods1;
|
2012-07-11 17:00:40 -05:00
|
|
|
import ambig_impl_2_lib::me;
|
|
|
|
trait me {
|
|
|
|
fn me() -> uint;
|
|
|
|
}
|
|
|
|
impl methods2 of me for uint { fn me() -> uint { self } } //~ NOTE is `methods2::me`
|
2012-06-30 06:23:59 -05:00
|
|
|
fn main() { 1u.me(); } //~ ERROR multiple applicable methods in scope
|
2012-07-06 21:06:58 -05:00
|
|
|
//~^ NOTE is `ambig_impl_2_lib::methods1::me`
|