os-rust/tests/ui/traits/impl-inherent-prefer-over-trait.rs

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

31 lines
509 B
Rust
Raw Normal View History

//@ run-pass
struct Foo;
trait Trait {
2024-02-07 10:42:01 +08:00
fn bar(&self); //~ WARN method `bar` is never used
}
// Inherent impls should be preferred over trait ones.
impl Foo {
fn bar(&self) {}
}
2019-05-28 14:47:21 -04:00
impl dyn Trait {
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 14:47:21 -04:00
<dyn Trait>::baz(&Foo);
}