about summary refs log tree commit diff
path: root/tests/ui/modules_and_files_visibility/mod_file_disambig.rs
blob: 1483e3e4630c20a264cd1ca8c4acd743554e35ac (plain)
1
2
3
4
5
6
mod mod_file_disambig_aux; //~ ERROR file for module `mod_file_disambig_aux` found at both

fn main() {
    assert_eq!(mod_file_aux::bar(), 10);
    //~^ ERROR failed to resolve: use of unresolved module or unlinked crate `mod_file_aux`
}