2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2015-02-19 01:37:25 +00:00
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
trait Trait {
|
|
|
|
fn bar(&self);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inherent impls should be preferred over trait ones.
|
|
|
|
impl Foo {
|
|
|
|
fn bar(&self) {}
|
|
|
|
}
|
|
|
|
|
2019-05-28 18:47:21 +00:00
|
|
|
impl dyn Trait {
|
2015-02-19 01:37:25 +00:00
|
|
|
fn baz(_: &Foo) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait for Foo {
|
|
|
|
fn bar(&self) { panic!("wrong method called!") }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
Foo.bar();
|
|
|
|
Foo::bar(&Foo);
|
|
|
|
<Foo>::bar(&Foo);
|
|
|
|
|
|
|
|
// Should work even if Trait::baz doesn't exist.
|
|
|
|
// N.B: `<Trait>::bar` would be ambiguous.
|
2019-05-28 18:47:21 +00:00
|
|
|
<dyn Trait>::baz(&Foo);
|
2015-02-19 01:37:25 +00:00
|
|
|
}
|