]> git.proxmox.com Git - rustc.git/blob - tests/ui/modules_and_files_visibility/mod_file_disambig.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / modules_and_files_visibility / mod_file_disambig.rs
1 mod mod_file_disambig_aux; //~ ERROR file for module `mod_file_disambig_aux` found at both
2
3 fn main() {
4 assert_eq!(mod_file_aux::bar(), 10);
5 //~^ ERROR failed to resolve: use of undeclared crate or module `mod_file_aux`
6 }