mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
255 B
Rust
9 lines
255 B
Rust
// aux-build:glob-conflict.rs
|
|
|
|
extern crate glob_conflict;
|
|
|
|
fn main() {
|
|
glob_conflict::f(); //~ ERROR cannot find function `f` in crate `glob_conflict`
|
|
glob_conflict::glob::f(); //~ ERROR cannot find function `f` in module `glob_conflict::glob`
|
|
}
|