]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/glob-conflict-cross-crate.rs
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.git] / tests / ui / imports / glob-conflict-cross-crate.rs
1 // aux-build:glob-conflict.rs
2
3 extern crate glob_conflict;
4
5 fn main() {
6     glob_conflict::f(); //~ ERROR cannot find function `f` in crate `glob_conflict`
7     glob_conflict::glob::f(); //~ ERROR cannot find function `f` in module `glob_conflict::glob`
8 }