rust/src/test/compile-fail/ambig_impl_2_exe.rs
2012-08-08 18:19:24 -07:00

11 lines
340 B
Rust

// xfail-fast aux-build
// aux-build:ambig_impl_2_lib.rs
use ambig_impl_2_lib;
import ambig_impl_2_lib::me;
trait me {
fn me() -> uint;
}
impl uint: me { fn me() -> uint { self } } //~ NOTE is `__extensions__::me`
fn main() { 1u.me(); } //~ ERROR multiple applicable methods in scope
//~^ NOTE is `ambig_impl_2_lib::__extensions__::me`