mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
24 lines
298 B
Rust
24 lines
298 B
Rust
pub mod a {
|
|
pub trait A {
|
|
fn foo(&self);
|
|
}
|
|
|
|
}
|
|
pub mod b {
|
|
use a::A;
|
|
|
|
pub struct B;
|
|
impl A for B { fn foo(&self) {} }
|
|
|
|
pub mod c {
|
|
use b::B;
|
|
|
|
fn foo(b: &B) {
|
|
b.foo(); //~ ERROR: no method named `foo` found
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {}
|