summary refs log tree commit diff
path: root/src/test/ui/mod/mod_file_disambig.rs
blob: 7b182421d34e3c0b1d7f1f2ccf95e876ad1f2f23 (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 undeclared type or module `mod_file_aux`
}