mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
152 B
Rust
11 lines
152 B
Rust
use a::f;
|
|
use b::f; //~ ERROR: unresolved import `b::f` [E0432]
|
|
//~^ no `f` in `b`
|
|
|
|
mod a { pub fn f() {} }
|
|
mod b { }
|
|
|
|
fn main() {
|
|
f();
|
|
}
|