rust/tests/ui/issues/issue-3702-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
443 B
Rust
Raw Normal View History

2015-04-18 00:12:20 -05:00
pub trait ToPrimitive {
fn to_int(&self) -> isize { 0 }
}
impl ToPrimitive for i32 {}
impl ToPrimitive for isize {}
2012-12-06 20:32:13 -06:00
trait Add {
fn to_int(&self) -> isize;
2019-05-28 13:46:13 -05:00
fn add_dynamic(&self, other: &dyn Add) -> isize;
2012-12-06 20:32:13 -06:00
}
impl Add for isize {
fn to_int(&self) -> isize { *self }
2019-05-28 13:46:13 -05:00
fn add_dynamic(&self, other: &dyn Add) -> isize {
self.to_int() + other.to_int() //~ ERROR multiple applicable items in scope
2012-12-06 20:32:13 -06:00
}
}
fn main() { }