mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
19 lines
345 B
Rust
19 lines
345 B
Rust
mod foo {
|
|
pub struct Foo;
|
|
impl Foo {
|
|
fn bar(&self) {}
|
|
}
|
|
|
|
pub trait Baz {
|
|
fn bar(&self) -> bool { true }
|
|
}
|
|
impl Baz for Foo {}
|
|
}
|
|
|
|
fn main() {
|
|
use foo::Baz;
|
|
|
|
// Check that `bar` resolves to the trait method, not the inherent impl method.
|
|
let _: () = foo::Foo.bar(); //~ ERROR mismatched types
|
|
}
|