rust/src/test/compile-fail/ambig_impl_2_exe.rs
2012-05-25 17:04:05 -07:00

8 lines
335 B
Rust

// xfail-fast aux-build
// aux-build:ambig_impl_2_lib.rs
use ambig_impl_2_lib;
import ambig_impl_2_lib::methods1;
impl methods2 for uint { fn me() -> uint { self } } //! NOTE candidate #2 is `methods2::me`
fn main() { 1u.me(); } //! ERROR multiple applicable methods in scope
//!^ NOTE candidate #1 is `ambig_impl_2_lib::methods1::me`