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-05-25 10:42:39 -05:00
|
|
|
impl methods2 for uint { fn me() -> uint { self } } //! NOTE candidate #2 is `methods2::me`
|
2012-05-02 23:14:26 -05:00
|
|
|
fn main() { 1u.me(); } //! ERROR multiple applicable methods in scope
|
2012-05-25 10:42:39 -05:00
|
|
|
//!^ NOTE candidate #1 is `ambig_impl_2_lib::methods1::me`
|