]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/glob-conflict-cross-crate.rs
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[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 }