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-06 22:45:06 -05:00
|
|
|
impl methods2 for uint { fn me() -> uint { self } } //~ NOTE candidate #2 is `methods2::me`
|
2012-06-30 06:23:59 -05:00
|
|
|
fn main() { 1u.me(); } //~ ERROR multiple applicable methods in scope
|
2012-07-06 22:45:06 -05:00
|
|
|
//~^ NOTE candidate #1 is `ambig_impl_2_lib::methods1::me`
|