blob: d84c243f2139c41a143a6cd5537874f6c7e9e9a4 (
plain)
1
2
3
4
5
6
7
8
|
// 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`
}
|