]> git.proxmox.com Git - rustc.git/blame - src/test/ui/mod/mod_file_disambig.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / mod / mod_file_disambig.rs
CommitLineData
1a4d82fc 1mod mod_file_disambig_aux; //~ ERROR file for module `mod_file_disambig_aux` found at both
223e47cc
LB
2
3fn main() {
1a4d82fc 4 assert_eq!(mod_file_aux::bar(), 10);
1b1a35ee 5 //~^ ERROR failed to resolve: use of undeclared crate or module `mod_file_aux`
223e47cc 6}